14 lines
163 B
Go
Raw Normal View History

2024-10-14 13:49:16 +08:00
package errcode
const (
ErrGeneral = (iota + 1) * 100000
ErrAnimal
2024-10-17 14:49:50 +08:00
ErrUser
2024-10-14 13:49:16 +08:00
)
const (
ErrGeneralStart = ErrGeneral + iota
ErrInvalidData
ErrInternalError
)