blob: b3dd10a99b27377483cb7445c8f075c8a6bde076 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package enums
type ErrorKind string
const (
BadRequest ErrorKind = "bad_request"
Forbidden ErrorKind = "forbidden"
Internal ErrorKind = "internal"
NotFound ErrorKind = "not_found"
Unauthorized ErrorKind = "unauthorized"
Unprocessable ErrorKind = "unprocessable"
)
|