express-embed-mobile-sdk-android-release

//sdk/com.adobe.express.embedsdk/CCEverywhereError

CCEverywhereError


class CCEverywhereError(val code: String? = null, val message: String, val subError: Any? = null, val customData: Any? = null) : Exception

Main exception class for all Adobe Express Embed SDK errors.

Constructors

   
CCEverywhereError
constructor(error: ErrorCodeMessages, subError: CCEverywhereError? = null)
Constructs a CCEverywhereError from structured error information.
constructor(code: String? = null, message: String, subError: Any? = null, customData: Any? = null)

Types

Name Summary
Companion
object Companion

Properties

Name Summary
code
val code: String? = null
Error code identifier from ErrorCode constants
customData
val customData: Any? = null
Optional additional context data for debugging
message
open override val message: String
Human-readable error description
subError
val subError: Any? = null
Optional nested error that caused this error (error chaining)