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 aErrorResponseDto
record 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 boolean
Indicates whether some other object is "equal to" this one.Returns the value of theexception
record component.final int
hashCode()
Returns a hash code value for this object.Returns the value of themessageIsHandled
record component.org.springframework.http.HttpStatus
status()
Returns the value of thestatus
record component.Returns the value of thetimestamp
record component.final String
toString()
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 aErrorResponseDto
record class.- Parameters:
status
- the value for thestatus
record componenttimestamp
- the value for thetimestamp
record componentmessageIsHandled
- the value for themessageIsHandled
record componentexception
- the value for theexception
record 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 thestatus
record component.- Returns:
- the value of the
status
record component
-
timestamp
Returns the value of thetimestamp
record component.- Returns:
- the value of the
timestamp
record component
-
messageIsHandled
Returns the value of themessageIsHandled
record component.- Returns:
- the value of the
messageIsHandled
record component
-
exception
Returns the value of theexception
record component.- Returns:
- the value of the
exception
record component
-