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.
ExecSyncError
Synchronous 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.
ControlFlowError
Errors occuring during TotalControlFlow operation.
CryptoError
Crypto operation error.
DecodeError
Decode error.
EncodeError
Encode error.
EvalSyncError
Errors that might occur during synchronous evaluation.
LenWordsError
A len words error.
MemoryError
Memory operation error.
MissingAccessArgError
Missing argument error.
OpAsyncError
An asynchronous operation failed.
OpError
An individual operation failed during execution.
OpSyncError
A synchronous operation failed.
RepeatError
Repeat operation error.
StackError
Stack operation error.
TotalControlFlowError
Total control flow operation error.

Type Aliases§

EvalSyncResult
Shorthand for a Result where the error type is a EvalSyncError.
ExecResult
Shorthand for a Result where the error type is a ExecError.
ExecSyncResult
Shorthand for a Result where the error type is a ExecSyncError.
MemoryResult
Shorthand for a Result where the error type is a MemoryError.
OpAsyncResult
Shorthand for a Result where the error type is an OpAsyncError.
OpResult
Shorthand for a Result where the error type is an OpError.
OpSyncResult
Shorthand for a Result where the error type is an OpSyncError.
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.