laconicd-deprecated/types/errors.go

27 lines
933 B
Go
Raw Normal View History

package types
import (
errorsmod "cosmossdk.io/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.
ErrInvalidValue = errorsmod.Register(RootCodespace, 2, "invalid value")
// ErrInvalidChainID returns an error resulting from an invalid chain ID.
ErrInvalidChainID = errorsmod.Register(RootCodespace, 3, "invalid chain ID")
2021-04-17 10:00:07 +00:00
// ErrMarshalBigInt returns an error resulting from marshaling a big.Int to a string.
ErrMarshalBigInt = errorsmod.Register(RootCodespace, 5, "cannot marshal big.Int to string")
2021-04-17 10:00:07 +00:00
// ErrUnmarshalBigInt returns an error resulting from unmarshaling a big.Int from a string.
ErrUnmarshalBigInt = errorsmod.Register(RootCodespace, 6, "cannot unmarshal big.Int from string")
)