open class ClientError : Parcelable
A human readable error, produced by the Account SDK. The creation of these errors will be logged when running a debug build. This can be overwritten by setting Logger.loggingEnabled
errorType
- The ErrorType of the error
message
- A human readable message of the error
enum class ErrorType |
ClientError(errorType: ClientError.ErrorType, message: String)
A human readable error, produced by the Account SDK. The creation of these errors will be logged when running a debug build. This can be overwritten by setting Logger.loggingEnabled |
val errorType: ClientError.ErrorType
The ErrorType of the error |
|
val message: String
A human readable message of the error |
val USER_LOGGED_OUT_ERROR: ClientError |