NotYetSimulatedException

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

Exception thrown when attempting an operation that requires simulation before the transaction has been simulated.

Operations like signing, submitting, or checking authorization requirements all require that AssembledTransaction.simulate be called first.

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?