-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patherrors.go
47 lines (37 loc) · 1 KB
/
errors.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package directus
import (
"errors"
"fmt"
"net/url"
)
var (
// ErrItemNotFound is returned when the item is not found in the collection.
ErrItemNotFound = errors.New("directus: item not found")
// ErrIEmpty is returned when the item is returned empty.
ErrEmpty = errors.New("directus: empty")
)
type unexpectedStatusError struct {
status int
url *url.URL
}
func (e *unexpectedStatusError) Error() string {
return fmt.Sprintf("directus: unexpected status code %v for url %q", e.status, e.url.String())
}
type Error struct {
Message string `json:"message"`
Extensions ErrorExtensions `json:"extensions"`
}
func (e Error) Error() string {
if e.Extensions.Code != "" {
return fmt.Sprintf("directus: %s (code: %s)", e.Message, e.Extensions.Code)
}
return fmt.Sprintf("directus: %s", e.Message)
}
type ErrorExtensions struct {
Code ErrorCode `json:"code"`
}
type ErrorCode string
const (
ErrorCodeRecordNotUnique = "RECORD_NOT_UNIQUE"
ErrorCodeInvalidForeignKey = "INVALID_FOREIGN_KEY"
)