Package com.arcxp.commons.throwables

Types

Link copied to clipboard
@Keep
class ArcXPError(    val type: ArcXPSDKErrorType? = null,     var code: String? = null,     var message: String,     val value: Any? = null) : Error

ArcXPError for non recoverable errors Constructor

Link copied to clipboard
@Keep
class ArcXPException(    var message: String? = null,     var type: ArcXPSDKErrorType? = null,     val value: Any? = null,     var code: String? = null) : Exception

ArcXPException for catchable exceptions Constructor

Link copied to clipboard
enum ArcXPSDKErrorType : Enum<ArcXPSDKErrorType>