Expand description
The types of errors that might occur throughout execution.
Structs§
- Exec
Error - Execution failed at the operation at the given index.
- Exec
Sync Error - Synchronous 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.
- Control
Flow Error - Errors occuring during
TotalControlFlowoperation. - Crypto
Error - Crypto operation error.
- Decode
Error - Decode error.
- Encode
Error - Encode error.
- Eval
Sync Error - Errors that might occur during synchronous evaluation.
- LenWords
Error - A
len wordserror. - Memory
Error - Memory operation error.
- Missing
Access ArgError - Missing argument error.
- OpAsync
Error - An asynchronous operation failed.
- OpError
- An individual operation failed during execution.
- OpSync
Error - A synchronous operation failed.
- Repeat
Error - Repeat operation error.
- Stack
Error - Stack operation error.
- Total
Control Flow Error - Total control flow operation error.
Type Aliases§
- Eval
Sync Result - Shorthand for a
Resultwhere the error type is aEvalSyncError. - Exec
Result - Shorthand for a
Resultwhere the error type is aExecError. - Exec
Sync Result - Shorthand for a
Resultwhere the error type is aExecSyncError. - Memory
Result - Shorthand for a
Resultwhere the error type is aMemoryError. - OpAsync
Result - Shorthand for a
Resultwhere the error type is anOpAsyncError. - OpResult
- Shorthand for a
Resultwhere the error type is anOpError. - OpSync
Result - Shorthand for a
Resultwhere the error type is anOpSyncError. - Repeat
Result - Shorthand for a
Resultwhere the error type is aRepeatError. - Stack
Result - Shorthand for a
Resultwhere the error type is aStackError. - Total
Control Flow Result - Shorthand for a
Resultwhere the error type is aTotalControlFlowError.