Expand description
The types of errors that might occur throughout execution.
Structs§
- Exec
Error - Execution failed at the operation at the given index.
- OutOf
GasError - The gas cost of performing an operation would exceed the gas limit.
Enums§
- Access
Error - Access operation error.
- AluError
- ALU operation error.
- Compute
Error - Compute operation error.
- Control
Flow Error - Errors occuring during
TotalControlFlow
operation. - Crypto
Error - Crypto operation error.
- Decode
Error - Decode error.
- Encode
Error - Encode error.
- Eval
Error - Errors that might occur during synchronous evaluation.
- LenWords
Error - A
len words
error. - Memory
Error - Memory operation error.
- Missing
Access ArgError - Missing argument error.
- OpError
- An individual operation failed during execution.
- Parent
Memory Error - Parent memory operation error.
- Repeat
Error - Repeat operation error.
- Stack
Error - Stack operation error.
- State
Read ArgError - A error occurred while reading state read arguments
- Total
Control Flow Error - Total control flow operation error.
Type Aliases§
- Compute
Result - Shorthand for a
Result
where the error type is aComputeError
. - Eval
Result - Shorthand for a
Result
where the error type is aEvalSyncError
. - Exec
Result - Shorthand for a
Result
where the error type is aExecError
. - Memory
Result - Shorthand for a
Result
where the error type is aMemoryError
. - OpResult
- Shorthand for a
Result
where the error type is anOpError
. - Repeat
Result - Shorthand for a
Result
where the error type is aRepeatError
. - Stack
Result - Shorthand for a
Result
where the error type is aStackError
. - Total
Control Flow Result - Shorthand for a
Result
where the error type is aTotalControlFlowError
.