TransactionResolutionException

open class TransactionResolutionException constructor(val hash: SecureHash, message: String = "Transaction resolution failure for ") : FlowException

The node asked a remote peer for the transaction identified by hash because it is a dependency of a transaction being resolved, but the remote peer would not provide it.

Inheritors

Constructors

Link copied to clipboard
constructor(hash: SecureHash, message: String = "Transaction resolution failure for ")

Types

Link copied to clipboard

Thrown if a transaction specifies a set of parameters that aren't stored locally yet verification is requested. This should never normally happen because before verification comes resolution, and if a peer can't provide a new set of parameters, TransactionResolutionException will have already been thrown beforehand.

Properties

Link copied to clipboard
open override val cause: Throwable?
Link copied to clipboard

Merkle root of the transaction being resolved, see net.corda.core.transactions.WireTransaction.id

Link copied to clipboard
open override val message: String?
Link copied to clipboard

the ID backing getErrorId. If null it will be set dynamically by the flow framework when the exception is handled. This ID is propagated to counterparty flows, even when the FlowException is downgraded to an UnexpectedFlowEndException. This is so the error conditions may be correlated later on.

Link copied to clipboard
Link copied to clipboard
open override val originalMessage: String?
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
open override fun addSuppressed(suppressed: Array<Throwable>)
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
Link copied to clipboard
open fun getErrorId(): Long?
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open override fun setCause(cause: Throwable?)
Link copied to clipboard
open override fun setMessage(message: String?)
Link copied to clipboard