github.com/mailru/activerecord@v1.12.2/pkg/serializer/errs/error.go (about)

     1  package errs
     2  
     3  import "errors"
     4  
     5  var (
     6  	ErrMarshalJSON            = errors.New("err marshal json")
     7  	ErrUnmarshalJSON          = errors.New("err unmarshal json")
     8  	ErrMapstructureNewDecoder = errors.New("err mapstructure new decoder")
     9  	ErrMapstructureDecode     = errors.New("err mapstructure decode")
    10  	ErrMapstructureEncode     = errors.New("err mapstructure encode")
    11  	ErrPrintfParse            = errors.New("err printf parse")
    12  )