Package tbdex.sdk.httpserver.models
Class CallbackError
-
- All Implemented Interfaces:
-
java.io.Serializable
public final class CallbackError extends Exception
Exception class representing an error that can occur during a callback execution.
-
-
Constructor Summary
Constructors Constructor Description CallbackError(HttpStatusCode statusCode, List<ErrorDetail> details)
-
Method Summary
Modifier and Type Method Description final HttpStatusCodegetStatusCode()The HTTP status code associated with the error. final List<ErrorDetail>getDetails()The list of error details providing additional information. -
Methods inherited from class kotlin.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Constructor Detail
-
CallbackError
CallbackError(HttpStatusCode statusCode, List<ErrorDetail> details)
-
-
Method Detail
-
getStatusCode
final HttpStatusCode getStatusCode()
The HTTP status code associated with the error.
-
getDetails
final List<ErrorDetail> getDetails()
The list of error details providing additional information.
-
-
-
-