laconicd/types/errors.go

24 lines
756 B
Go
Raw Normal View History

package types
import (
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
)
const (
// RootCodespace is the codespace for all errors defined in this package
RootCodespace = "ethermint"
)
2020-05-05 16:54:03 +00:00
// NOTE: We can't use 1 since that error code is reserved for internal errors.
var (
// ErrInvalidValue returns an error resulting from an invalid value.
2020-05-05 16:54:03 +00:00
ErrInvalidValue = sdkerrors.Register(RootCodespace, 2, "invalid value")
// ErrInvalidChainID returns an error resulting from an invalid chain ID.
2020-05-05 16:54:03 +00:00
ErrInvalidChainID = sdkerrors.Register(RootCodespace, 3, "invalid chain ID")
// ErrVMExecution returns an error resulting from an error in EVM execution.
2020-05-05 16:54:03 +00:00
ErrVMExecution = sdkerrors.Register(RootCodespace, 4, "error while executing evm transaction")
)