//sdk/com.adobe.express.embedsdk/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.
| 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) |
| Name | Summary |
|---|---|
| Companion | object Companion |
| 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) |