Files
kubesphere/pkg/errors/code.go
2019-03-07 17:08:54 +08:00

18 lines
184 B
Go

package errors
type Code int
const (
OK Code = iota
Canceled
Unknown
InvalidArgument
Internal // 5
Unavailable
AlreadyExists
NotFound
NotImplement
VerifyFailed
Conflict
)