Record Class ErrorResponseDto
java.lang.Object
java.lang.Record
com.winchesters.devopsify.dto.error.ErrorResponseDto
public record ErrorResponseDto(org.springframework.http.HttpStatus status, Instant timestamp, Boolean messageIsHandled, ExceptionJsonFormatter exception)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionErrorResponseDto(org.springframework.http.HttpStatus status, Instant timestamp, ExceptionJsonFormatter exception) ErrorResponseDto(org.springframework.http.HttpStatus status, Instant timestamp, Boolean messageIsHandled, ExceptionJsonFormatter exception) Creates an instance of aErrorResponseDtorecord class.ErrorResponseDto(org.springframework.http.HttpStatus status, Instant timestamp, Boolean messageIsHandled, Exception exception) ErrorResponseDto(org.springframework.http.HttpStatus status, Instant timestamp, Exception exception) -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.Returns the value of theexceptionrecord component.final inthashCode()Returns a hash code value for this object.Returns the value of themessageIsHandledrecord component.org.springframework.http.HttpStatusstatus()Returns the value of thestatusrecord component.Returns the value of thetimestamprecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ErrorResponseDto
public ErrorResponseDto(org.springframework.http.HttpStatus status, Instant timestamp, Boolean messageIsHandled, ExceptionJsonFormatter exception) Creates an instance of aErrorResponseDtorecord class.- Parameters:
status- the value for thestatusrecord componenttimestamp- the value for thetimestamprecord componentmessageIsHandled- the value for themessageIsHandledrecord componentexception- the value for theexceptionrecord component
-
ErrorResponseDto
-
ErrorResponseDto
public ErrorResponseDto(org.springframework.http.HttpStatus status, Instant timestamp, ExceptionJsonFormatter exception) -
ErrorResponseDto
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
status
public org.springframework.http.HttpStatus status()Returns the value of thestatusrecord component.- Returns:
- the value of the
statusrecord component
-
timestamp
Returns the value of thetimestamprecord component.- Returns:
- the value of the
timestamprecord component
-
messageIsHandled
Returns the value of themessageIsHandledrecord component.- Returns:
- the value of the
messageIsHandledrecord component
-
exception
Returns the value of theexceptionrecord component.- Returns:
- the value of the
exceptionrecord component
-