-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy patherrors.ts
More file actions
344 lines (298 loc) · 8.97 KB
/
Copy patherrors.ts
File metadata and controls
344 lines (298 loc) · 8.97 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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
import type { POJO } from './types.js';
import type { ConnectionError, CryptoError } from './native/types.js';
import { AbstractError } from '@matrixai/errors';
class ErrorQUIC<T> extends AbstractError<T> {
static description = 'QUIC error';
}
class ErrorQUICUndefinedBehaviour<T> extends ErrorQUIC<T> {
static description = 'You should never see this error';
}
class ErrorQUICHostInvalid<T> extends ErrorQUIC<T> {
static description = 'Host provided was not valid';
}
class ErrorQUICPortInvalid<T> extends ErrorQUIC<T> {
static description = 'Port provided was not valid';
}
class ErrorQUICConfig<T> extends ErrorQUIC<T> {
static description = 'QUIC config error';
}
class ErrorQUICSocket<T> extends ErrorQUIC<T> {
static description = 'QUIC Socket error';
}
class ErrorQUICSocketNotRunning<T> extends ErrorQUICSocket<T> {
static description = 'QUIC Socket is not running';
}
class ErrorQUICSocketConnectionsActive<T> extends ErrorQUICSocket<T> {
static description = 'QUIC Socket has active connections';
}
class ErrorQUICSocketInvalidBindAddress<T> extends ErrorQUICSocket<T> {
static description = 'QUIC Socket cannot bind to the specified address';
}
class ErrorQUICSocketInvalidSendAddress<T> extends ErrorQUICSocket<T> {
static description = 'QUIC Socket cannot send to the specified address';
}
class ErrorQUICSocketInternal<T> extends ErrorQUICSocket<T> {
static description = 'QUIC Socket internal error';
}
class ErrorQUICClient<T> extends ErrorQUIC<T> {
static description = 'QUIC Client error';
}
class ErrorQUICClientDestroyed<T> extends ErrorQUICClient<T> {
static description = 'QUIC Client is destroyed';
}
class ErrorQUICClientCreateTimeout<T> extends ErrorQUICClient<T> {
static description = 'QUIC Client create timeout';
}
class ErrorQUICClientSocketNotRunning<T> extends ErrorQUICClient<T> {
static description =
'QUIC Client cannot be created with an unstarted shared QUIC socket';
}
class ErrorQUICClientInvalidArgument<T> extends ErrorQUICClient<T> {
static description =
'QUIC Client had a failure relating to an invalid argument';
}
class ErrorQUICClientInvalidHost<T> extends ErrorQUICClient<T> {
static description = 'QUIC Client cannot be created with the specified host';
}
class ErrorQUICClientInternal<T> extends ErrorQUICClient<T> {
static description = 'QUIC Client internal error';
}
class ErrorQUICServer<T> extends ErrorQUIC<T> {
static description = 'QUIC Server error';
}
class ErrorQUICServerNotRunning<T> extends ErrorQUICServer<T> {
static description = 'QUIC Server is not running';
}
class ErrorQUICServerSocketNotRunning<T> extends ErrorQUICServer<T> {
static description =
'QUIC Server cannot start with an unstarted shared QUIC socket';
}
class ErrorQUICServerNewConnection<T> extends ErrorQUICServer<T> {
static description = 'QUIC Server creating a new connection';
}
class ErrorQUICServerInternal<T> extends ErrorQUICServer<T> {
static description = 'QUIC Server internal error';
}
class ErrorQUICServerStopping<T> extends ErrorQUICServer<T> {
static description = 'QUIC Server is stopping';
}
class ErrorQUICConnection<T> extends ErrorQUIC<T> {
static description = 'QUIC Connection error';
}
class ErrorQUICConnectionStopping<T> extends ErrorQUICConnection<T> {
static description = 'QUIC Connection is stopping';
}
class ErrorQUICConnectionNotRunning<T> extends ErrorQUICConnection<T> {
static description = 'QUIC Connection is not running';
}
class ErrorQUICConnectionClosed<T> extends ErrorQUICConnection<T> {
static description =
'QUIC Connection cannot be restarted because it has already been closed';
}
class ErrorQUICConnectionStartData<T> extends ErrorQUIC<T> {
static description =
'QUIC Connection start requires data when it is a server connection';
}
class ErrorQUICConnectionStartTimeout<T> extends ErrorQUICConnection<T> {
static description = 'QUIC Connection start timeout';
}
class ErrorQUICConnectionConfigInvalid<T> extends ErrorQUICConnection<T> {
static description = 'QUIC connection invalid configuration';
}
class ErrorQUICConnectionLocal<T> extends ErrorQUICConnection<T> {
static description = 'QUIC Connection local error';
declare data: POJO & ConnectionError;
constructor(
message: string = '',
options: {
timestamp?: Date;
data: POJO & ConnectionError;
cause?: T;
},
) {
super(message, options);
}
}
class ErrorQUICConnectionLocalTLS<T> extends ErrorQUICConnectionLocal<T> {
static description = 'QUIC Connection local TLS error';
declare data: POJO &
ConnectionError & {
errorCode: CryptoError;
};
constructor(
message: string = '',
options: {
timestamp?: Date;
data: POJO &
ConnectionError & {
errorCode: CryptoError;
};
cause?: T;
},
) {
super(message, options);
}
}
class ErrorQUICConnectionPeer<T> extends ErrorQUICConnection<T> {
static description = 'QUIC Connection peer error';
declare data: POJO & ConnectionError;
constructor(
message: string = '',
options: {
timestamp?: Date;
data: POJO & ConnectionError;
cause?: T;
},
) {
super(message, options);
}
}
class ErrorQUICConnectionPeerTLS<T> extends ErrorQUICConnectionLocal<T> {
static description = 'QUIC Connection local TLS error';
declare data: POJO &
ConnectionError & {
errorCode: CryptoError;
};
constructor(
message: string = '',
options: {
timestamp?: Date;
data: POJO &
ConnectionError & {
errorCode: CryptoError;
};
cause?: T;
},
) {
super(message, options);
}
}
class ErrorQUICConnectionIdleTimeout<T> extends ErrorQUICConnection<T> {
static description = 'QUIC Connection max idle timeout exhausted';
}
class ErrorQUICConnectionInternal<T> extends ErrorQUICConnection<T> {
static description = 'QUIC Connection internal error';
}
class ErrorQUICStream<T> extends ErrorQUIC<T> {
static description = 'QUIC Stream error';
}
class ErrorQUICStreamDestroyed<T> extends ErrorQUICStream<T> {
static description = 'QUIC Stream is destroyed';
}
class ErrorQUICStreamLocalRead<T> extends ErrorQUICStream<T> {
static description = 'QUIC Stream locally closed readable side';
declare data: POJO & { code: number };
constructor(
message: string = '',
options: {
timestamp?: Date;
data: POJO & {
code: number;
};
cause?: T;
},
) {
super(message, options);
}
}
class ErrorQUICStreamLocalWrite<T> extends ErrorQUICStream<T> {
static description = 'QUIC Stream locally closed writable side';
declare data: POJO & { code: number };
constructor(
message: string = '',
options: {
timestamp?: Date;
data: POJO & {
code: number;
};
cause?: T;
},
) {
super(message, options);
}
}
class ErrorQUICStreamPeerRead<T> extends ErrorQUICStream<T> {
static description = 'QUIC Stream peer closed readable side';
declare data: POJO & { code: number };
constructor(
message: string = '',
options: {
timestamp?: Date;
data: POJO & {
code: number;
};
cause?: T;
},
) {
super(message, options);
}
}
class ErrorQUICStreamPeerWrite<T> extends ErrorQUICStream<T> {
static description = 'QUIC Stream peer closed writable side';
declare data: POJO & { code: number };
constructor(
message: string = '',
options: {
timestamp?: Date;
data: POJO & {
code: number;
};
cause?: T;
},
) {
super(message, options);
}
}
class ErrorQUICStreamInternal<T> extends ErrorQUICStream<T> {
static description = 'QUIC Stream internal error';
}
class ErrorQUICStreamLimit<T> extends ErrorQUICStream<T> {
static description = 'QUIC Stream limit has been reached';
}
export {
ErrorQUIC,
ErrorQUICUndefinedBehaviour,
ErrorQUICHostInvalid,
ErrorQUICPortInvalid,
ErrorQUICConfig,
ErrorQUICSocket,
ErrorQUICSocketNotRunning,
ErrorQUICSocketConnectionsActive,
ErrorQUICSocketInvalidBindAddress,
ErrorQUICSocketInvalidSendAddress,
ErrorQUICSocketInternal,
ErrorQUICClient,
ErrorQUICClientDestroyed,
ErrorQUICClientCreateTimeout,
ErrorQUICClientSocketNotRunning,
ErrorQUICClientInvalidArgument,
ErrorQUICClientInvalidHost,
ErrorQUICClientInternal,
ErrorQUICServer,
ErrorQUICServerNotRunning,
ErrorQUICServerSocketNotRunning,
ErrorQUICServerNewConnection,
ErrorQUICServerInternal,
ErrorQUICServerStopping,
ErrorQUICConnection,
ErrorQUICConnectionStopping,
ErrorQUICConnectionNotRunning,
ErrorQUICConnectionClosed,
ErrorQUICConnectionStartData,
ErrorQUICConnectionStartTimeout,
ErrorQUICConnectionConfigInvalid,
ErrorQUICConnectionLocal,
ErrorQUICConnectionLocalTLS,
ErrorQUICConnectionPeer,
ErrorQUICConnectionPeerTLS,
ErrorQUICConnectionIdleTimeout,
ErrorQUICConnectionInternal,
ErrorQUICStream,
ErrorQUICStreamDestroyed,
ErrorQUICStreamLocalRead,
ErrorQUICStreamLocalWrite,
ErrorQUICStreamPeerRead,
ErrorQUICStreamPeerWrite,
ErrorQUICStreamInternal,
ErrorQUICStreamLimit,
};