github.com/cosmos/cosmos-sdk@v0.50.10/x/group/errors/math.go (about)

     1  package errors
     2  
     3  import "cosmossdk.io/errors"
     4  
     5  // mathCodespace is the codespace for all errors defined in math package
     6  const mathCodespace = "math"
     7  
     8  // ErrInvalidDecString defines an error for an invalid decimal string
     9  var ErrInvalidDecString = errors.Register(mathCodespace, 10, "invalid decimal string")