This repository was archived by the owner on Feb 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 191
/
Copy patherrors.go
53 lines (43 loc) · 1.63 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
48
49
50
51
52
53
package errors
import (
"net/http"
"github.com/docker/distribution/registry/api/errcode"
)
const errGroup = "hyperd"
var (
ErrorCodeCommon = errcode.Register(errGroup, errcode.ErrorDescriptor{
Value: "COMMONERROR",
Message: "%v",
HTTPStatusCode: http.StatusInternalServerError,
})
ErrPodNotFound = errcode.Register(errGroup, errcode.ErrorDescriptor{
Value: "HYPER_POD_NOT_FOUND",
Message: "Pod %s not found",
HTTPStatusCode: http.StatusNotFound,
})
ErrBadJsonFormat = errcode.Register(errGroup, errcode.ErrorDescriptor{
Value: "HYPER_BAD_JSON_FORMAT",
Message: "failed to parse json: %v",
HTTPStatusCode: http.StatusBadRequest,
})
ErrSandboxNotExist = errcode.Register(errGroup, errcode.ErrorDescriptor{
Value: "HYPER_SANDBOX_NOT_EXIST",
Message: "sandbox does not exist",
HTTPStatusCode: http.StatusPreconditionFailed,
})
ErrPodNotAlive = errcode.Register(errGroup, errcode.ErrorDescriptor{
Value: "HYPER_POD_NOT_ALIVE",
Message: "cannot complete the operation, because the pod %s is not alive",
HTTPStatusCode: http.StatusPreconditionFailed,
})
ErrPodNotRunning = errcode.Register(errGroup, errcode.ErrorDescriptor{
Value: "HYPER_POD_NOT_RUNNING",
Message: "cannot complete the operation, because the pod %s is not running",
HTTPStatusCode: http.StatusPreconditionFailed,
})
ErrContainerAlreadyRunning = errcode.Register(errGroup, errcode.ErrorDescriptor{
Value: "HYPER_CONTAINER_RUNNING",
Message: "container %s is in running state",
HTTPStatusCode: http.StatusPreconditionFailed,
})
)