MpcSdkException

@ObjCName(swiftName = "MpcSdkException")
class MpcSdkException(message: String? = null, cause: Throwable? = null) : Exception

Represents an exception specific to handling errors in the MPC SDK.

This exception is typically used to wrap errors encountered during MPC-related operations, providing a way to propagate meaningful error messages and root causes throughout the SDK's execution flow.

Parameters

message

An optional detail message describing the error.

cause

The underlying throwable that caused this exception, if available.

Constructors

Link copied to clipboard
constructor(message: String? = null, cause: Throwable? = null)

Properties

Link copied to clipboard
open val cause: Throwable?
Link copied to clipboard
Link copied to clipboard
open val message: String?
Link copied to clipboard
Link copied to clipboard