2018-04-06 14:52:10 +00:00
|
|
|
# Nimbus
|
|
|
|
# Copyright (c) 2018 Status Research & Development GmbH
|
|
|
|
# Licensed under either of
|
|
|
|
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
|
|
|
|
# * MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
2018-01-15 18:42:40 +00:00
|
|
|
type
|
2019-07-19 09:39:54 +00:00
|
|
|
EVMError* = object of CatchableError
|
2018-01-15 18:42:40 +00:00
|
|
|
## Base error class for all evm errors.
|
|
|
|
|
|
|
|
BlockNotFound* = object of EVMError
|
|
|
|
## The block with the given number/hash does not exist.
|
|
|
|
|
|
|
|
ParentNotFound* = object of EVMError
|
|
|
|
## The parent of a given block does not exist.
|
|
|
|
|
|
|
|
CanonicalHeadNotFound* = object of EVMError
|
|
|
|
## The chain has no canonical head.
|
|
|
|
|
|
|
|
ValidationError* = object of EVMError
|
|
|
|
## Error to signal something does not pass a validation check.
|
|
|
|
|
|
|
|
VMError* = object of EVMError
|
|
|
|
## Class of errors which can be raised during VM execution.
|
|
|
|
|
|
|
|
OutOfGas* = object of VMError
|
|
|
|
## Error signaling that VM execution has run out of gas.
|
|
|
|
|
|
|
|
InsufficientStack* = object of VMError
|
|
|
|
## Error signaling that the stack is empty.
|
|
|
|
|
|
|
|
FullStack* = object of VMError
|
|
|
|
## Error signaling that the stack is full.
|
|
|
|
|
|
|
|
InvalidJumpDestination* = object of VMError
|
|
|
|
## Error signaling that the jump destination for a JUMPDEST operation is invalid.
|
|
|
|
|
|
|
|
InvalidInstruction* = object of VMError
|
|
|
|
## Error signaling that an opcode is invalid.
|
|
|
|
|
|
|
|
InsufficientFunds* = object of VMError
|
|
|
|
## Error signaling that an account has insufficient funds to transfer the
|
|
|
|
## requested value.
|
|
|
|
|
2018-06-15 09:11:25 +00:00
|
|
|
StackDepthError* = object of VMError
|
2018-01-15 18:42:40 +00:00
|
|
|
## Error signaling that the call stack has exceeded it's maximum allowed depth.
|
|
|
|
|
|
|
|
ContractCreationCollision* = object of VMError
|
|
|
|
## Error signaling that there was an address collision during contract creation.
|
|
|
|
|
|
|
|
WriteProtection* = object of VMError
|
|
|
|
## Error raised if an attempt to modify the state database is made while
|
|
|
|
## operating inside of a STATICCALL context.
|
|
|
|
|
|
|
|
OutOfBoundsRead* = object of VMError
|
|
|
|
## Error raised to indicate an attempt was made to read data beyond the
|
|
|
|
## boundaries of the buffer (such as with RETURNDATACOPY)
|
|
|
|
|
2018-01-29 13:56:51 +00:00
|
|
|
TypeError* = object of VMError
|
|
|
|
## Error when invalid values are found
|
|
|
|
|
2018-01-30 18:12:05 +00:00
|
|
|
NotImplementedError* = object of VMError
|
|
|
|
## Not implemented error
|
2018-01-29 13:56:51 +00:00
|
|
|
|
2019-04-23 13:52:53 +00:00
|
|
|
StaticContextError* = object of VMError
|
|
|
|
## State changes not allowed in static call context
|
2022-01-18 16:19:32 +00:00
|
|
|
|
|
|
|
VmStateError* = object of VMError
|
|
|
|
## VM state error relay
|
2023-01-10 04:25:23 +00:00
|
|
|
|
|
|
|
InitcodeError* = object of EVMError
|
|
|
|
## Error to signal inicode size > EIP3860_MAX_INITCODE_SIZE
|
2023-09-26 09:21:13 +00:00
|
|
|
|
|
|
|
CoreDbApiError* = object of CatchableError
|
|
|
|
## Errors related to `CoreDB` API
|