-
Notifications
You must be signed in to change notification settings - Fork 919
Expand file tree
/
Copy patherrors.ts
More file actions
176 lines (161 loc) · 4.36 KB
/
errors.ts
File metadata and controls
176 lines (161 loc) · 4.36 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
// This is the message for the sandbox timeout error when the response code is 502/Unavailable
export function formatSandboxTimeoutError(message: string) {
return new TimeoutError(
`${message}: This error is likely due to sandbox timeout. You can modify the sandbox timeout by passing 'timeoutMs' when starting the sandbox or calling '.setTimeout' on the sandbox with the desired timeout.`
)
}
/**
* Base class for all sandbox errors.
*
* Thrown when general sandbox errors occur.
*/
export class SandboxError extends Error {
constructor(message?: string, stackTrace?: string) {
super(message)
this.name = 'SandboxError'
if (stackTrace) {
this.stack = stackTrace
}
}
}
/**
* Thrown when a timeout error occurs.
*
* The [unavailable] error type is caused by sandbox timeout.
*
* The [canceled] error type is caused by exceeding request timeout.
*
* The [deadline_exceeded] error type is caused by exceeding the timeout for command execution, watch, etc.
*
* The [unknown] error type is sometimes caused by the sandbox timeout when the request is not processed correctly.
*/
export class TimeoutError extends SandboxError {
constructor(message: string, stackTrace?: string) {
super(message, stackTrace)
this.name = 'TimeoutError'
}
}
/**
* Thrown when an invalid argument is provided.
*/
export class InvalidArgumentError extends SandboxError {
constructor(message: string, stackTrace?: string) {
super(message, stackTrace)
this.name = 'InvalidArgumentError'
}
}
/**
* Thrown when there is not enough disk space.
*/
export class NotEnoughSpaceError extends SandboxError {
constructor(message: string, stackTrace?: string) {
super(message, stackTrace)
this.name = 'NotEnoughSpaceError'
}
}
/**
* Thrown when a resource is not found.
*
* @deprecated Use {@link FileNotFoundError} or {@link SandboxNotFoundError} instead. This class will be removed in the next major version.
*/
export class NotFoundError extends SandboxError {
constructor(message: string, stackTrace?: string) {
super(message, stackTrace)
this.name = 'NotFoundError'
}
}
/**
* Thrown when a file or directory is not found inside a sandbox.
*/
export class FileNotFoundError extends NotFoundError {
constructor(message: string, stackTrace?: string) {
super(message, stackTrace)
this.name = 'FileNotFoundError'
}
}
/**
* Thrown when a sandbox is not found (e.g. it doesn't exist or is no longer running).
*/
export class SandboxNotFoundError extends NotFoundError {
constructor(message: string, stackTrace?: string) {
super(message, stackTrace)
this.name = 'SandboxNotFoundError'
}
}
/**
* Thrown when authentication fails.
*/
export class AuthenticationError extends Error {
constructor(message: string) {
super(message)
this.name = 'AuthenticationError'
}
}
/**
* Thrown when git authentication fails.
*/
export class GitAuthError extends AuthenticationError {
constructor(message: string) {
super(message)
this.name = 'GitAuthError'
}
}
/**
* Thrown when git upstream tracking is missing.
*/
export class GitUpstreamError extends SandboxError {
constructor(message: string, stackTrace?: string) {
super(message, stackTrace)
this.name = 'GitUpstreamError'
}
}
/**
* Thrown when the template uses old envd version. It isn't compatible with the new SDK.
*/
export class TemplateError extends SandboxError {
constructor(message: string, stackTrace?: string) {
super(message, stackTrace)
this.name = 'TemplateError'
}
}
/**
* Thrown when the API rate limit is exceeded.
*/
export class RateLimitError extends SandboxError {
constructor(message: string) {
super(message)
this.name = 'RateLimitError'
}
}
/**
* Thrown when the build fails.
*/
export class BuildError extends Error {
constructor(message: string, stackTrace?: string) {
super(message)
this.name = 'BuildError'
if (stackTrace) {
this.stack = stackTrace
}
}
}
/**
* Thrown when the file upload fails.
*/
export class FileUploadError extends BuildError {
constructor(message: string, stackTrace?: string) {
super(message, stackTrace)
this.name = 'FileUploadError'
}
}
/**
* Base class for all volume errors.
*
* Thrown when general volume errors occur.
*/
export class VolumeError extends Error {
constructor(message: string) {
super(message)
this.name = 'VolumeError'
}
}