-
Notifications
You must be signed in to change notification settings - Fork 876
Expand file tree
/
Copy patherrors.ts
More file actions
174 lines (160 loc) · 4.3 KB
/
errors.ts
File metadata and controls
174 lines (160 loc) · 4.3 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
/**
* The type of timeout that occurred.
*
* - `sandbox` — the sandbox itself timed out (e.g., idle timeout expired).
* - `request` — the HTTP request timed out (exceeded `requestTimeoutMs`).
* - `execution` — a long-running operation timed out (exceeded `timeoutMs` for command execution, watch, etc.).
*/
export enum TimeoutType {
/**
* The sandbox itself timed out (e.g., idle timeout expired).
*/
SANDBOX = 'sandbox',
/**
* The HTTP request timed out (exceeded `requestTimeoutMs`).
*/
REQUEST = 'request',
/**
* A long-running operation timed out (exceeded `timeoutMs` for command execution, watch, etc.).
*/
EXECUTION = 'execution',
}
// 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.`,
undefined,
TimeoutType.SANDBOX
)
}
/**
* 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 {@link type} property indicates the kind of timeout:
*
* - {@link TimeoutType.SANDBOX} — the sandbox itself timed out (idle timeout, etc.).
* - {@link TimeoutType.REQUEST} — the HTTP request exceeded `requestTimeoutMs`.
* - {@link TimeoutType.EXECUTION} — a long-running operation exceeded its `timeoutMs`.
*/
export class TimeoutError extends SandboxError {
/**
* The type of timeout that occurred.
*/
readonly type: TimeoutType
constructor(
message: string,
stackTrace?: string,
type: TimeoutType = TimeoutType.SANDBOX
) {
super(message, stackTrace)
this.name = 'TimeoutError'
this.type = type
}
}
/**
* 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.
*/
export class NotFoundError extends SandboxError {
constructor(message: string, stackTrace?: string) {
super(message, stackTrace)
this.name = 'NotFoundError'
}
}
/**
* 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'
}
}