TransactionRejectedError
Defined in: ootle/src/errors/index.ts:52
Raised when consensus rejects a transaction.
txId is the rejected transaction’s identifier; reason is the human-readable
reason (the indexer’s abort_details string or a JSON.stringify of the abort
variant when no string was supplied). rejectReason is the structured engine
reject reason if available — currently optional because the indexer’s
Decision.Abort carries the lighter AbortReason shape, not the full
RejectReason. Callers should branch on reason (string) for most cases.
Extends
Section titled “Extends”Constructors
Section titled “Constructors”Constructor
Section titled “Constructor”new TransactionRejectedError(
message,options):TransactionRejectedError
Defined in: ootle/src/errors/index.ts:57
Parameters
Section titled “Parameters”message
Section titled “message”string
options
Section titled “options”ErrorOptions & object
Returns
Section titled “Returns”TransactionRejectedError
Overrides
Section titled “Overrides”Properties
Section titled “Properties”reason
Section titled “reason”
readonlyreason:string
Defined in: ootle/src/errors/index.ts:54
rejectReason?
Section titled “rejectReason?”
readonlyoptionalrejectReason?:RejectReason
Defined in: ootle/src/errors/index.ts:55
readonlytxId:string
Defined in: ootle/src/errors/index.ts:53