RestorationFailureException

class RestorationFailureException(message: String, assembledTransaction: AssembledTransaction<*>) : ContractException

Exception thrown when automatic contract state restoration fails.

When a contract's archived state needs to be restored before invocation, AssembledTransaction.simulate automatically attempts restoration. This exception indicates that the restoration transaction failed.

Constructors

Link copied to clipboard
constructor(message: String, assembledTransaction: AssembledTransaction<*>)

Properties

Link copied to clipboard

The AssembledTransaction that caused the error

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