github.com/arieschain/arieschain@v0.0.0-20191023063405-37c074544356/core/vm/errors.go (about) 1 package vm 2 3 import "errors" 4 5 var ( 6 ErrOutOfGas = errors.New("out of gas") 7 ErrCodeStoreOutOfGas = errors.New("contract creation code storage out of gas") 8 ErrDepth = errors.New("max call depth exceeded") 9 ErrTraceLimitReached = errors.New("the number of logs reached the specified limit") 10 ErrInsufficientBalance = errors.New("insufficient balance for transfer") 11 ErrContractAddressCollision = errors.New("contract address collision") 12 )