Error
Uh oh this request hit a snag.
Inheritors
Types
Link copied to clipboard
data class GenericError(val exception: Throwable, val humanReadableMessage: String, val exceptionMessage: String) : ApiResult.Error
Represent other exceptions.
Link copied to clipboard
data class HttpError( val code: Int, val responseBody: HttpErrorResponse?, val exception: Throwable, val humanReadableMessage: String, val exceptionMessage: String) : ApiResult.Error
Represents server errors.
Link copied to clipboard
data class SerializationError(val exception: Throwable, val humanReadableMessage: String, val exceptionMessage: String) : ApiResult.Error
Represent SerializationExceptions.
Properties
Link copied to clipboard
Message from the exception
Link copied to clipboard
Human readable message for the error that can be displayed to users.