ErrorDetails

data class ErrorDetails(val code: String, val message: String, val details: List<String>, val fieldErrors: List<FieldError>, val httpStatus: Int)

Data class representing detailed information about an error.

Constructors

Link copied to clipboard
constructor(code: String, message: String, details: List<String>, fieldErrors: List<FieldError>, httpStatus: Int)

Properties

Link copied to clipboard

The error code associated with the error.

Link copied to clipboard

Additional details about the error.

Link copied to clipboard

List of field errors associated with the main error.

Link copied to clipboard

The HTTP status code associated with the error.

Link copied to clipboard

A message describing the error.