Module error

Source
Expand description

The types of errors that might occur throughout execution.

Structs§

ExecError
Execution failed at the operation at the given index.
OutOfGasError
The gas cost of performing an operation would exceed the gas limit.

Enums§

AccessError
Access operation error.
AluError
ALU operation error.
ComputeError
Compute operation error.
ControlFlowError
Errors occuring during TotalControlFlow operation.
CryptoError
Crypto operation error.
DecodeError
Decode error.
EncodeError
Encode error.
EvalError
Errors that might occur during synchronous evaluation.
LenWordsError
A len words error.
MemoryError
Memory operation error.
MissingAccessArgError
Missing argument error.
OpError
An individual operation failed during execution.
ParentMemoryError
Parent memory operation error.
RepeatError
Repeat operation error.
StackError
Stack operation error.
StateReadArgError
A error occurred while reading state read arguments
TotalControlFlowError
Total control flow operation error.

Type Aliases§

ComputeResult
Shorthand for a Result where the error type is a ComputeError.
EvalResult
Shorthand for a Result where the error type is a EvalSyncError.
ExecResult
Shorthand for a Result where the error type is a ExecError.
MemoryResult
Shorthand for a Result where the error type is a MemoryError.
OpResult
Shorthand for a Result where the error type is an OpError.
RepeatResult
Shorthand for a Result where the error type is a RepeatError.
StackResult
Shorthand for a Result where the error type is a StackError.
TotalControlFlowResult
Shorthand for a Result where the error type is a TotalControlFlowError.