SendTransactionFailedException

class SendTransactionFailedException(message: String, assembledTransaction: AssembledTransaction<*>? = null) : ContractException

Exception thrown when sending a transaction to the network fails.

This indicates that the transaction was rejected by the network before being queued for consensus. Common causes include invalid signatures, expired transaction, an inclusion fee below the current network minimum, or a full transaction queue.

Constructors

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

Types

Link copied to clipboard
object Companion

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?