package errcode
const (
ErrGeneral = (iota + 1) * 100000
ErrAnimal
ErrUser
)
ErrGeneralStart = ErrGeneral + iota
ErrInvalidData
ErrInternalError