opticore-catch-exception-error 1.0.15 → 1.0.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -1,4 +1,3 @@
1
- import { HttpStatusCode } from 'opticore-http-response';
2
1
  import EventEmitter from 'node:events';
3
2
  import { Request, Response, NextFunction } from 'opticore-express';
4
3
 
@@ -67,93 +66,6 @@ declare const CEventNameError: {
67
66
  request: string;
68
67
  };
69
68
 
70
- /**
71
- * Handling and catch a Node.js error.
72
- */
73
- declare class StackTraceError extends Error {
74
- readonly name: string;
75
- readonly httpCode: HttpStatusCode | any;
76
- readonly isOperational: boolean;
77
- /**
78
- *
79
- * @param props
80
- * @param name
81
- * @param httpCode
82
- * @param isOperational
83
- */
84
- constructor(props: string | undefined, name: string, httpCode: HttpStatusCode | any, isOperational: boolean);
85
- }
86
-
87
- /**
88
- * Handling and catch a Node.js error.
89
- */
90
- declare class StackTraceAssertionError extends StackTraceError {
91
- constructor(message: string);
92
- }
93
-
94
- /**
95
- * Handling and catch a Node.js error.
96
- */
97
- declare class StackTraceEvalError extends StackTraceError {
98
- constructor(message: string);
99
- }
100
-
101
- /**
102
- * Handling and catch a Node.js error.
103
- */
104
- declare class StackTraceGeneralError extends StackTraceError {
105
- constructor(message: string);
106
- }
107
-
108
- /**
109
- * Handling and catch a Node.js error.
110
- */
111
- declare class StackTraceOpenSSLError extends StackTraceError {
112
- constructor(message: string);
113
- }
114
-
115
- /**
116
- * Handling and catch a Node.js error.
117
- */
118
- declare class StackTraceRangeError extends StackTraceError {
119
- constructor(message: string);
120
- }
121
-
122
- /**
123
- * Handling and catch a Node.js error.
124
- */
125
- declare class StackTraceReferenceError extends StackTraceError {
126
- constructor(message: string);
127
- }
128
-
129
- /**
130
- * Handling and catch a Node.js error.
131
- */
132
- declare class StackTraceSyntaxError extends StackTraceError {
133
- constructor(message: string);
134
- }
135
-
136
- /**
137
- * Handling and catch a Node.js error.
138
- */
139
- declare class StackTraceSystemError extends StackTraceError {
140
- constructor(message: string, code: string);
141
- }
142
-
143
- /**
144
- * Handling and catch a Node.js error.
145
- */
146
- declare class StackTraceTypeError extends StackTraceError {
147
- constructor(message: string);
148
- }
149
-
150
- /**
151
- * Handling and catch a Node.js error.
152
- */
153
- declare class StackTraceURIError extends StackTraceError {
154
- constructor(message: string);
155
- }
156
-
157
69
  declare class ServerListenEventError {
158
70
  private logger;
159
71
  private stackTrace?;
@@ -264,186 +176,80 @@ declare class ServerListenEventError {
264
176
  private traceError;
265
177
  }
266
178
 
267
- /**
268
- * Handling and catch a Node.js error.
269
- */
270
- declare class StackTraceEACCES extends StackTraceError {
271
- constructor(message: string);
272
- }
273
-
274
- /**
275
- * Handling and catch a Node.js error.
276
- */
277
- declare class StackTraceEADDRINUSE extends StackTraceError {
278
- constructor(message: string);
279
- }
280
-
281
- /**
282
- * Handling and catch a Node.js error.
283
- */
284
- declare class StackTraceECONNREFUSED extends StackTraceError {
285
- constructor(message: string);
286
- }
287
-
288
- /**
289
- * Handling and catch a Node.js error.
290
- */
291
- declare class StackTraceECONNRESET extends StackTraceError {
292
- constructor(message: string);
293
- }
294
-
295
- /**
296
- * Handling and catch a Node.js error.
297
- */
298
- declare class StackTraceEEXIST extends StackTraceError {
299
- constructor(message: string);
300
- }
301
-
302
- /**
303
- * Handling and catch a Node.js error.
304
- */
305
- declare class StackTraceEISDIR extends StackTraceError {
306
- constructor(message: string);
307
- }
308
-
309
- /**
310
- * Handling and catch a Node.js error.
311
- */
312
- declare class StackTraceEMFILE extends StackTraceError {
313
- constructor(message: string);
314
- }
315
-
316
- /**
317
- * Handling and catch a Node.js error.
318
- */
319
- declare class StackTraceENOENT extends StackTraceError {
320
- constructor(message: string);
321
- }
322
-
323
- /**
324
- * Handling and catch a Node.js error.
325
- */
326
- declare class StackTraceENOTDIR extends StackTraceError {
327
- constructor(message: string);
328
- }
329
-
330
- /**
331
- * Handling and catch a Node.js error.
332
- */
333
- declare class StackTraceENOTEMPTY extends StackTraceError {
334
- constructor(message: string);
335
- }
336
-
337
- /**
338
- * Handling and catch a Node.js error.
339
- */
340
- declare class StackTraceEPERM extends StackTraceError {
341
- constructor(message: string);
342
- }
343
-
344
- /**
345
- * Handling and catch a Node.js error.
346
- */
347
- declare class StackTraceEPIPE extends StackTraceError {
348
- constructor(message: string);
349
- }
350
-
351
- /**
352
- * Handling and catch a Node.js error.
353
- */
354
- declare class StackTraceETIMEDOUT extends StackTraceError {
355
- constructor(message: string);
356
- }
357
-
358
- /**
359
- * Handling and catch a Node.js error.
360
- */
361
- declare class StackTraceERR_OSSL_EVP_UNSUPPORTED extends StackTraceError {
362
- constructor(message: string);
363
- }
364
-
365
- /**
366
- * Handling and catch a Node.js error.
367
- */
368
- declare class StackTraceERR_OSSL_BAD_DECRYPT extends StackTraceError {
369
- constructor(message: string);
370
- }
371
-
372
- /**
373
- * Handling and catch a Node.js error.
374
- */
375
- declare class StackTraceERR_OSSL_WRONG_FINAL_BLOCK_LENGTH extends StackTraceError {
376
- constructor(message: string);
377
- }
378
-
379
- /**
380
- * Handling and catch a Node.js error.
381
- */
382
- declare class StackTraceERR_INVALID_ARG_TYPE extends StackTraceError {
383
- constructor(message: string);
384
- }
385
-
386
- /**
387
- * Handling and catch a Node.js error.
388
- */
389
- declare class StackTraceERR_INVALID_CALLBACK extends StackTraceError {
390
- constructor(message: string);
391
- }
392
-
393
- /**
394
- * Handling and catch a Node.js error.
395
- */
396
- declare class StackTraceERR_HTTP_HEADERS_SENT extends StackTraceError {
397
- constructor(message: string);
398
- }
399
-
400
- /**
401
- * Handling and catch a Node.js error.
402
- */
403
- declare class StackTraceERR_STREAM_DESTROYED extends StackTraceError {
404
- constructor(message: string);
405
- }
406
-
407
- /**
408
- * Handling and catch a Node.js error.
409
- */
410
- declare class StackTraceERR_TLS_CERT_ALTNAME_INVALID extends StackTraceError {
411
- constructor(message: string);
412
- }
413
-
414
- /**
415
- * Handling and catch a Node.js error.
416
- */
417
- declare class StackTraceERR_UNSUPPORTED_ESM_URL_SCHEME extends StackTraceError {
418
- constructor(message: string);
179
+ declare class JavaScriptErrors {
180
+ private logger;
181
+ private stackTrace?;
182
+ private readonly localLanguage;
183
+ constructor(defaultLocalLang: string);
184
+ allError(error: any): void;
185
+ evalError(error: any): void;
186
+ rangeError(error: any): void;
187
+ referenceError(error: any): void;
188
+ syntaxError(error: any): void;
189
+ typeError(error: any): void;
190
+ uRIError(error: any): void;
191
+ private traceError;
419
192
  }
420
193
 
421
- /**
422
- * Handling and catch a Node.js error.
423
- */
424
- declare class StackTraceUncaughtException extends StackTraceError {
425
- constructor(message: string);
194
+ declare class SystemErrors {
195
+ private logger;
196
+ private stackTrace?;
197
+ private readonly localLanguage;
198
+ constructor(defaultLocalLang: string);
199
+ eAcces(error: any): void;
200
+ eAddrInUse(error: any): void;
201
+ eConnRefused(error: any): void;
202
+ eConnReset(error: any): void;
203
+ eExist(error: any): void;
204
+ eIsDir(error: any): void;
205
+ eMFile(error: any): void;
206
+ eNoEnt(error: any): void;
207
+ eNotDir(error: any): void;
208
+ eNotEmpty(error: any): void;
209
+ ePerm(error: any): void;
210
+ ePipe(error: any): void;
211
+ eTimedOut(error: any): void;
212
+ private traceError;
426
213
  }
427
214
 
428
- /**
429
- * Handling and catch a Node.js error.
430
- */
431
- declare class StackTraceUnhandledRejection extends StackTraceError {
432
- constructor(message: string);
215
+ declare class OpenSSLErrors {
216
+ private logger;
217
+ private stackTrace?;
218
+ private readonly localLanguage;
219
+ constructor(defaultLocalLang: string);
220
+ errOsSLEvpUnsupported(error: any): void;
221
+ errOsSLBadDecrypt(error: any): void;
222
+ errOsSLWrongFinalBlockLength(error: any): void;
223
+ private traceError;
433
224
  }
434
225
 
435
- /**
436
- * Handling and catch a Node.js error.
437
- */
438
- declare class StackTraceBeforeExit extends StackTraceError {
439
- constructor(message: string);
226
+ declare class InternalErrors {
227
+ private logger;
228
+ private stackTrace?;
229
+ private readonly localLanguage;
230
+ constructor(defaultLocalLang: string);
231
+ errInvalidArgType(error: any): void;
232
+ errInvalidCallback(error: any): void;
233
+ errHttpHeadersSent(error: any): void;
234
+ errStreamDestroyed(error: any): void;
235
+ errTlsCertAltNameInvalid(error: any): void;
236
+ errUnsupportedEsmUrlScheme(error: any): void;
237
+ private traceError;
440
238
  }
441
239
 
442
- /**
443
- * Handling and catch a Node.js error.
444
- */
445
- declare class StackTraceExit extends StackTraceError {
446
- constructor(message: string);
240
+ declare class AssertionErrors {
241
+ private logger;
242
+ private stackTrace?;
243
+ private readonly localLanguage;
244
+ constructor(defaultLocalLang: string);
245
+ allError(error: any): void;
246
+ evalError(error: any): void;
247
+ rangeError(error: any): void;
248
+ referenceError(error: any): void;
249
+ syntaxError(error: any): void;
250
+ typeError(error: any): void;
251
+ uRIError(error: any): void;
252
+ private traceError;
447
253
  }
448
254
 
449
- export { CErrorName, CEvent, CEventNameError, ServerListenEventError, StackTraceAssertionError, StackTraceBeforeExit, StackTraceEACCES, StackTraceEADDRINUSE, StackTraceECONNREFUSED, StackTraceECONNRESET, StackTraceEEXIST, StackTraceEISDIR, StackTraceEMFILE, StackTraceENOENT, StackTraceENOTDIR, StackTraceENOTEMPTY, StackTraceEPERM, StackTraceEPIPE, StackTraceERR_HTTP_HEADERS_SENT, StackTraceERR_INVALID_ARG_TYPE, StackTraceERR_INVALID_CALLBACK, StackTraceERR_OSSL_BAD_DECRYPT, StackTraceERR_OSSL_EVP_UNSUPPORTED, StackTraceERR_OSSL_WRONG_FINAL_BLOCK_LENGTH, StackTraceERR_STREAM_DESTROYED, StackTraceERR_TLS_CERT_ALTNAME_INVALID, StackTraceERR_UNSUPPORTED_ESM_URL_SCHEME, StackTraceETIMEDOUT, StackTraceError, StackTraceEvalError, StackTraceExit, StackTraceGeneralError, StackTraceOpenSSLError, StackTraceRangeError, StackTraceReferenceError, StackTraceSyntaxError, StackTraceSystemError, StackTraceTypeError, StackTraceURIError, StackTraceUncaughtException, StackTraceUnhandledRejection };
255
+ export { AssertionErrors, CErrorName, CEvent, CEventNameError, InternalErrors, JavaScriptErrors, OpenSSLErrors, ServerListenEventError, SystemErrors };
package/dist/index.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- import { HttpStatusCode } from 'opticore-http-response';
2
1
  import EventEmitter from 'node:events';
3
2
  import { Request, Response, NextFunction } from 'opticore-express';
4
3
 
@@ -67,93 +66,6 @@ declare const CEventNameError: {
67
66
  request: string;
68
67
  };
69
68
 
70
- /**
71
- * Handling and catch a Node.js error.
72
- */
73
- declare class StackTraceError extends Error {
74
- readonly name: string;
75
- readonly httpCode: HttpStatusCode | any;
76
- readonly isOperational: boolean;
77
- /**
78
- *
79
- * @param props
80
- * @param name
81
- * @param httpCode
82
- * @param isOperational
83
- */
84
- constructor(props: string | undefined, name: string, httpCode: HttpStatusCode | any, isOperational: boolean);
85
- }
86
-
87
- /**
88
- * Handling and catch a Node.js error.
89
- */
90
- declare class StackTraceAssertionError extends StackTraceError {
91
- constructor(message: string);
92
- }
93
-
94
- /**
95
- * Handling and catch a Node.js error.
96
- */
97
- declare class StackTraceEvalError extends StackTraceError {
98
- constructor(message: string);
99
- }
100
-
101
- /**
102
- * Handling and catch a Node.js error.
103
- */
104
- declare class StackTraceGeneralError extends StackTraceError {
105
- constructor(message: string);
106
- }
107
-
108
- /**
109
- * Handling and catch a Node.js error.
110
- */
111
- declare class StackTraceOpenSSLError extends StackTraceError {
112
- constructor(message: string);
113
- }
114
-
115
- /**
116
- * Handling and catch a Node.js error.
117
- */
118
- declare class StackTraceRangeError extends StackTraceError {
119
- constructor(message: string);
120
- }
121
-
122
- /**
123
- * Handling and catch a Node.js error.
124
- */
125
- declare class StackTraceReferenceError extends StackTraceError {
126
- constructor(message: string);
127
- }
128
-
129
- /**
130
- * Handling and catch a Node.js error.
131
- */
132
- declare class StackTraceSyntaxError extends StackTraceError {
133
- constructor(message: string);
134
- }
135
-
136
- /**
137
- * Handling and catch a Node.js error.
138
- */
139
- declare class StackTraceSystemError extends StackTraceError {
140
- constructor(message: string, code: string);
141
- }
142
-
143
- /**
144
- * Handling and catch a Node.js error.
145
- */
146
- declare class StackTraceTypeError extends StackTraceError {
147
- constructor(message: string);
148
- }
149
-
150
- /**
151
- * Handling and catch a Node.js error.
152
- */
153
- declare class StackTraceURIError extends StackTraceError {
154
- constructor(message: string);
155
- }
156
-
157
69
  declare class ServerListenEventError {
158
70
  private logger;
159
71
  private stackTrace?;
@@ -264,186 +176,80 @@ declare class ServerListenEventError {
264
176
  private traceError;
265
177
  }
266
178
 
267
- /**
268
- * Handling and catch a Node.js error.
269
- */
270
- declare class StackTraceEACCES extends StackTraceError {
271
- constructor(message: string);
272
- }
273
-
274
- /**
275
- * Handling and catch a Node.js error.
276
- */
277
- declare class StackTraceEADDRINUSE extends StackTraceError {
278
- constructor(message: string);
279
- }
280
-
281
- /**
282
- * Handling and catch a Node.js error.
283
- */
284
- declare class StackTraceECONNREFUSED extends StackTraceError {
285
- constructor(message: string);
286
- }
287
-
288
- /**
289
- * Handling and catch a Node.js error.
290
- */
291
- declare class StackTraceECONNRESET extends StackTraceError {
292
- constructor(message: string);
293
- }
294
-
295
- /**
296
- * Handling and catch a Node.js error.
297
- */
298
- declare class StackTraceEEXIST extends StackTraceError {
299
- constructor(message: string);
300
- }
301
-
302
- /**
303
- * Handling and catch a Node.js error.
304
- */
305
- declare class StackTraceEISDIR extends StackTraceError {
306
- constructor(message: string);
307
- }
308
-
309
- /**
310
- * Handling and catch a Node.js error.
311
- */
312
- declare class StackTraceEMFILE extends StackTraceError {
313
- constructor(message: string);
314
- }
315
-
316
- /**
317
- * Handling and catch a Node.js error.
318
- */
319
- declare class StackTraceENOENT extends StackTraceError {
320
- constructor(message: string);
321
- }
322
-
323
- /**
324
- * Handling and catch a Node.js error.
325
- */
326
- declare class StackTraceENOTDIR extends StackTraceError {
327
- constructor(message: string);
328
- }
329
-
330
- /**
331
- * Handling and catch a Node.js error.
332
- */
333
- declare class StackTraceENOTEMPTY extends StackTraceError {
334
- constructor(message: string);
335
- }
336
-
337
- /**
338
- * Handling and catch a Node.js error.
339
- */
340
- declare class StackTraceEPERM extends StackTraceError {
341
- constructor(message: string);
342
- }
343
-
344
- /**
345
- * Handling and catch a Node.js error.
346
- */
347
- declare class StackTraceEPIPE extends StackTraceError {
348
- constructor(message: string);
349
- }
350
-
351
- /**
352
- * Handling and catch a Node.js error.
353
- */
354
- declare class StackTraceETIMEDOUT extends StackTraceError {
355
- constructor(message: string);
356
- }
357
-
358
- /**
359
- * Handling and catch a Node.js error.
360
- */
361
- declare class StackTraceERR_OSSL_EVP_UNSUPPORTED extends StackTraceError {
362
- constructor(message: string);
363
- }
364
-
365
- /**
366
- * Handling and catch a Node.js error.
367
- */
368
- declare class StackTraceERR_OSSL_BAD_DECRYPT extends StackTraceError {
369
- constructor(message: string);
370
- }
371
-
372
- /**
373
- * Handling and catch a Node.js error.
374
- */
375
- declare class StackTraceERR_OSSL_WRONG_FINAL_BLOCK_LENGTH extends StackTraceError {
376
- constructor(message: string);
377
- }
378
-
379
- /**
380
- * Handling and catch a Node.js error.
381
- */
382
- declare class StackTraceERR_INVALID_ARG_TYPE extends StackTraceError {
383
- constructor(message: string);
384
- }
385
-
386
- /**
387
- * Handling and catch a Node.js error.
388
- */
389
- declare class StackTraceERR_INVALID_CALLBACK extends StackTraceError {
390
- constructor(message: string);
391
- }
392
-
393
- /**
394
- * Handling and catch a Node.js error.
395
- */
396
- declare class StackTraceERR_HTTP_HEADERS_SENT extends StackTraceError {
397
- constructor(message: string);
398
- }
399
-
400
- /**
401
- * Handling and catch a Node.js error.
402
- */
403
- declare class StackTraceERR_STREAM_DESTROYED extends StackTraceError {
404
- constructor(message: string);
405
- }
406
-
407
- /**
408
- * Handling and catch a Node.js error.
409
- */
410
- declare class StackTraceERR_TLS_CERT_ALTNAME_INVALID extends StackTraceError {
411
- constructor(message: string);
412
- }
413
-
414
- /**
415
- * Handling and catch a Node.js error.
416
- */
417
- declare class StackTraceERR_UNSUPPORTED_ESM_URL_SCHEME extends StackTraceError {
418
- constructor(message: string);
179
+ declare class JavaScriptErrors {
180
+ private logger;
181
+ private stackTrace?;
182
+ private readonly localLanguage;
183
+ constructor(defaultLocalLang: string);
184
+ allError(error: any): void;
185
+ evalError(error: any): void;
186
+ rangeError(error: any): void;
187
+ referenceError(error: any): void;
188
+ syntaxError(error: any): void;
189
+ typeError(error: any): void;
190
+ uRIError(error: any): void;
191
+ private traceError;
419
192
  }
420
193
 
421
- /**
422
- * Handling and catch a Node.js error.
423
- */
424
- declare class StackTraceUncaughtException extends StackTraceError {
425
- constructor(message: string);
194
+ declare class SystemErrors {
195
+ private logger;
196
+ private stackTrace?;
197
+ private readonly localLanguage;
198
+ constructor(defaultLocalLang: string);
199
+ eAcces(error: any): void;
200
+ eAddrInUse(error: any): void;
201
+ eConnRefused(error: any): void;
202
+ eConnReset(error: any): void;
203
+ eExist(error: any): void;
204
+ eIsDir(error: any): void;
205
+ eMFile(error: any): void;
206
+ eNoEnt(error: any): void;
207
+ eNotDir(error: any): void;
208
+ eNotEmpty(error: any): void;
209
+ ePerm(error: any): void;
210
+ ePipe(error: any): void;
211
+ eTimedOut(error: any): void;
212
+ private traceError;
426
213
  }
427
214
 
428
- /**
429
- * Handling and catch a Node.js error.
430
- */
431
- declare class StackTraceUnhandledRejection extends StackTraceError {
432
- constructor(message: string);
215
+ declare class OpenSSLErrors {
216
+ private logger;
217
+ private stackTrace?;
218
+ private readonly localLanguage;
219
+ constructor(defaultLocalLang: string);
220
+ errOsSLEvpUnsupported(error: any): void;
221
+ errOsSLBadDecrypt(error: any): void;
222
+ errOsSLWrongFinalBlockLength(error: any): void;
223
+ private traceError;
433
224
  }
434
225
 
435
- /**
436
- * Handling and catch a Node.js error.
437
- */
438
- declare class StackTraceBeforeExit extends StackTraceError {
439
- constructor(message: string);
226
+ declare class InternalErrors {
227
+ private logger;
228
+ private stackTrace?;
229
+ private readonly localLanguage;
230
+ constructor(defaultLocalLang: string);
231
+ errInvalidArgType(error: any): void;
232
+ errInvalidCallback(error: any): void;
233
+ errHttpHeadersSent(error: any): void;
234
+ errStreamDestroyed(error: any): void;
235
+ errTlsCertAltNameInvalid(error: any): void;
236
+ errUnsupportedEsmUrlScheme(error: any): void;
237
+ private traceError;
440
238
  }
441
239
 
442
- /**
443
- * Handling and catch a Node.js error.
444
- */
445
- declare class StackTraceExit extends StackTraceError {
446
- constructor(message: string);
240
+ declare class AssertionErrors {
241
+ private logger;
242
+ private stackTrace?;
243
+ private readonly localLanguage;
244
+ constructor(defaultLocalLang: string);
245
+ allError(error: any): void;
246
+ evalError(error: any): void;
247
+ rangeError(error: any): void;
248
+ referenceError(error: any): void;
249
+ syntaxError(error: any): void;
250
+ typeError(error: any): void;
251
+ uRIError(error: any): void;
252
+ private traceError;
447
253
  }
448
254
 
449
- export { CErrorName, CEvent, CEventNameError, ServerListenEventError, StackTraceAssertionError, StackTraceBeforeExit, StackTraceEACCES, StackTraceEADDRINUSE, StackTraceECONNREFUSED, StackTraceECONNRESET, StackTraceEEXIST, StackTraceEISDIR, StackTraceEMFILE, StackTraceENOENT, StackTraceENOTDIR, StackTraceENOTEMPTY, StackTraceEPERM, StackTraceEPIPE, StackTraceERR_HTTP_HEADERS_SENT, StackTraceERR_INVALID_ARG_TYPE, StackTraceERR_INVALID_CALLBACK, StackTraceERR_OSSL_BAD_DECRYPT, StackTraceERR_OSSL_EVP_UNSUPPORTED, StackTraceERR_OSSL_WRONG_FINAL_BLOCK_LENGTH, StackTraceERR_STREAM_DESTROYED, StackTraceERR_TLS_CERT_ALTNAME_INVALID, StackTraceERR_UNSUPPORTED_ESM_URL_SCHEME, StackTraceETIMEDOUT, StackTraceError, StackTraceEvalError, StackTraceExit, StackTraceGeneralError, StackTraceOpenSSLError, StackTraceRangeError, StackTraceReferenceError, StackTraceSyntaxError, StackTraceSystemError, StackTraceTypeError, StackTraceURIError, StackTraceUncaughtException, StackTraceUnhandledRejection };
255
+ export { AssertionErrors, CErrorName, CEvent, CEventNameError, InternalErrors, JavaScriptErrors, OpenSSLErrors, ServerListenEventError, SystemErrors };