@twin.org/core 0.0.1-next.1
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/LICENSE +201 -0
- package/README.md +29 -0
- package/dist/cjs/index.cjs +4221 -0
- package/dist/esm/index.mjs +4184 -0
- package/dist/types/encoding/base32.d.ts +18 -0
- package/dist/types/encoding/base64.d.ts +24 -0
- package/dist/types/encoding/base64Url.d.ts +18 -0
- package/dist/types/errors/alreadyExistsError.d.ts +18 -0
- package/dist/types/errors/baseError.d.ts +103 -0
- package/dist/types/errors/conflictError.d.ts +19 -0
- package/dist/types/errors/generalError.d.ts +20 -0
- package/dist/types/errors/guardError.d.ts +19 -0
- package/dist/types/errors/notFoundError.d.ts +18 -0
- package/dist/types/errors/notImplementedError.d.ts +16 -0
- package/dist/types/errors/notSupportedError.d.ts +17 -0
- package/dist/types/errors/unauthorizedError.d.ts +17 -0
- package/dist/types/errors/unprocessableError.d.ts +20 -0
- package/dist/types/errors/validationError.d.ts +18 -0
- package/dist/types/factories/componentFactory.d.ts +6 -0
- package/dist/types/factories/factory.d.ts +67 -0
- package/dist/types/helpers/arrayHelper.d.ts +12 -0
- package/dist/types/helpers/errorHelper.d.ts +24 -0
- package/dist/types/helpers/filenameHelper.d.ts +11 -0
- package/dist/types/helpers/hexHelper.d.ts +30 -0
- package/dist/types/helpers/jsonHelper.d.ts +29 -0
- package/dist/types/helpers/objectHelper.d.ts +74 -0
- package/dist/types/helpers/randomHelper.d.ts +11 -0
- package/dist/types/helpers/stringHelper.d.ts +90 -0
- package/dist/types/index.d.ts +46 -0
- package/dist/types/models/IComponent.d.ts +29 -0
- package/dist/types/models/IError.d.ts +31 -0
- package/dist/types/models/IKeyValue.d.ts +13 -0
- package/dist/types/models/ILabelledValue.d.ts +13 -0
- package/dist/types/models/ILocale.d.ts +13 -0
- package/dist/types/models/ILocaleDictionary.d.ts +6 -0
- package/dist/types/models/ILocalesIndex.d.ts +10 -0
- package/dist/types/models/IPatchOperation.d.ts +21 -0
- package/dist/types/models/IUrlParts.d.ts +29 -0
- package/dist/types/models/IValidationFailure.d.ts +23 -0
- package/dist/types/models/compressionType.d.ts +17 -0
- package/dist/types/types/bitString.d.ts +41 -0
- package/dist/types/types/url.d.ts +56 -0
- package/dist/types/types/urn.d.ts +93 -0
- package/dist/types/utils/asyncCache.d.ts +33 -0
- package/dist/types/utils/coerce.d.ts +61 -0
- package/dist/types/utils/compression.d.ts +20 -0
- package/dist/types/utils/converter.d.ts +85 -0
- package/dist/types/utils/guards.d.ts +190 -0
- package/dist/types/utils/i18n.d.ts +81 -0
- package/dist/types/utils/is.d.ts +205 -0
- package/dist/types/utils/validation.d.ts +245 -0
- package/docs/changelog.md +5 -0
- package/docs/examples.md +1 -0
- package/docs/reference/classes/AlreadyExistsError.md +375 -0
- package/docs/reference/classes/ArrayHelper.md +37 -0
- package/docs/reference/classes/AsyncCache.md +117 -0
- package/docs/reference/classes/Base32.md +57 -0
- package/docs/reference/classes/Base64.md +74 -0
- package/docs/reference/classes/Base64Url.md +54 -0
- package/docs/reference/classes/BaseError.md +344 -0
- package/docs/reference/classes/BitString.md +123 -0
- package/docs/reference/classes/Coerce.md +209 -0
- package/docs/reference/classes/Compression.md +61 -0
- package/docs/reference/classes/ConflictError.md +379 -0
- package/docs/reference/classes/Converter.md +285 -0
- package/docs/reference/classes/ErrorHelper.md +73 -0
- package/docs/reference/classes/Factory.md +221 -0
- package/docs/reference/classes/FilenameHelper.md +33 -0
- package/docs/reference/classes/GeneralError.md +375 -0
- package/docs/reference/classes/GuardError.md +379 -0
- package/docs/reference/classes/Guards.md +711 -0
- package/docs/reference/classes/HexHelper.md +97 -0
- package/docs/reference/classes/I18n.md +237 -0
- package/docs/reference/classes/Is.md +693 -0
- package/docs/reference/classes/JsonHelper.md +92 -0
- package/docs/reference/classes/NotFoundError.md +375 -0
- package/docs/reference/classes/NotImplementedError.md +367 -0
- package/docs/reference/classes/NotSupportedError.md +371 -0
- package/docs/reference/classes/ObjectHelper.md +287 -0
- package/docs/reference/classes/RandomHelper.md +33 -0
- package/docs/reference/classes/StringHelper.md +270 -0
- package/docs/reference/classes/UnauthorizedError.md +371 -0
- package/docs/reference/classes/UnprocessableError.md +375 -0
- package/docs/reference/classes/Url.md +167 -0
- package/docs/reference/classes/Urn.md +295 -0
- package/docs/reference/classes/Validation.md +821 -0
- package/docs/reference/classes/ValidationError.md +371 -0
- package/docs/reference/index.md +60 -0
- package/docs/reference/interfaces/IComponent.md +79 -0
- package/docs/reference/interfaces/IError.md +55 -0
- package/docs/reference/interfaces/IKeyValue.md +23 -0
- package/docs/reference/interfaces/ILabelledValue.md +23 -0
- package/docs/reference/interfaces/ILocale.md +19 -0
- package/docs/reference/interfaces/ILocaleDictionary.md +7 -0
- package/docs/reference/interfaces/ILocalesIndex.md +11 -0
- package/docs/reference/interfaces/IPatchOperation.md +35 -0
- package/docs/reference/interfaces/IUrlParts.md +51 -0
- package/docs/reference/interfaces/IValidationFailure.md +39 -0
- package/docs/reference/type-aliases/CompressionType.md +5 -0
- package/docs/reference/variables/ComponentFactory.md +5 -0
- package/docs/reference/variables/CompressionType.md +19 -0
- package/locales/en.json +98 -0
- package/package.json +65 -0
|
@@ -0,0 +1,371 @@
|
|
|
1
|
+
# Class: UnauthorizedError
|
|
2
|
+
|
|
3
|
+
Class to handle errors which are triggered by access not being unauthorized.
|
|
4
|
+
|
|
5
|
+
## Extends
|
|
6
|
+
|
|
7
|
+
- [`BaseError`](BaseError.md)
|
|
8
|
+
|
|
9
|
+
## Constructors
|
|
10
|
+
|
|
11
|
+
### new UnauthorizedError()
|
|
12
|
+
|
|
13
|
+
> **new UnauthorizedError**(`source`, `message`, `inner`?): [`UnauthorizedError`](UnauthorizedError.md)
|
|
14
|
+
|
|
15
|
+
Create a new instance of UnauthorizedError.
|
|
16
|
+
|
|
17
|
+
#### Parameters
|
|
18
|
+
|
|
19
|
+
• **source**: `string`
|
|
20
|
+
|
|
21
|
+
The source of the error.
|
|
22
|
+
|
|
23
|
+
• **message**: `string`
|
|
24
|
+
|
|
25
|
+
The message as a code.
|
|
26
|
+
|
|
27
|
+
• **inner?**: `unknown`
|
|
28
|
+
|
|
29
|
+
The inner error if we have wrapped another error.
|
|
30
|
+
|
|
31
|
+
#### Returns
|
|
32
|
+
|
|
33
|
+
[`UnauthorizedError`](UnauthorizedError.md)
|
|
34
|
+
|
|
35
|
+
#### Overrides
|
|
36
|
+
|
|
37
|
+
[`BaseError`](BaseError.md).[`constructor`](BaseError.md#constructors)
|
|
38
|
+
|
|
39
|
+
## Properties
|
|
40
|
+
|
|
41
|
+
### source?
|
|
42
|
+
|
|
43
|
+
> `optional` **source**: `string`
|
|
44
|
+
|
|
45
|
+
The source of the error.
|
|
46
|
+
|
|
47
|
+
#### Inherited from
|
|
48
|
+
|
|
49
|
+
[`BaseError`](BaseError.md).[`source`](BaseError.md#source)
|
|
50
|
+
|
|
51
|
+
***
|
|
52
|
+
|
|
53
|
+
### properties?
|
|
54
|
+
|
|
55
|
+
> `optional` **properties**: `object`
|
|
56
|
+
|
|
57
|
+
Any additional information for the error.
|
|
58
|
+
|
|
59
|
+
#### Index Signature
|
|
60
|
+
|
|
61
|
+
\[`id`: `string`\]: `unknown`
|
|
62
|
+
|
|
63
|
+
#### Inherited from
|
|
64
|
+
|
|
65
|
+
[`BaseError`](BaseError.md).[`properties`](BaseError.md#properties)
|
|
66
|
+
|
|
67
|
+
***
|
|
68
|
+
|
|
69
|
+
### inner?
|
|
70
|
+
|
|
71
|
+
> `optional` **inner**: [`IError`](../interfaces/IError.md)
|
|
72
|
+
|
|
73
|
+
The inner error if there was one.
|
|
74
|
+
|
|
75
|
+
#### Inherited from
|
|
76
|
+
|
|
77
|
+
[`BaseError`](BaseError.md).[`inner`](BaseError.md#inner)
|
|
78
|
+
|
|
79
|
+
***
|
|
80
|
+
|
|
81
|
+
### CLASS\_NAME
|
|
82
|
+
|
|
83
|
+
> `readonly` `static` **CLASS\_NAME**: `string`
|
|
84
|
+
|
|
85
|
+
Runtime name for the class.
|
|
86
|
+
|
|
87
|
+
## Methods
|
|
88
|
+
|
|
89
|
+
### fromError()
|
|
90
|
+
|
|
91
|
+
> `static` **fromError**(`err`): [`BaseError`](BaseError.md)
|
|
92
|
+
|
|
93
|
+
Construct an error from an existing one.
|
|
94
|
+
|
|
95
|
+
#### Parameters
|
|
96
|
+
|
|
97
|
+
• **err**: `unknown`
|
|
98
|
+
|
|
99
|
+
The existing error.
|
|
100
|
+
|
|
101
|
+
#### Returns
|
|
102
|
+
|
|
103
|
+
[`BaseError`](BaseError.md)
|
|
104
|
+
|
|
105
|
+
The new instance.
|
|
106
|
+
|
|
107
|
+
#### Inherited from
|
|
108
|
+
|
|
109
|
+
[`BaseError`](BaseError.md).[`fromError`](BaseError.md#fromerror)
|
|
110
|
+
|
|
111
|
+
***
|
|
112
|
+
|
|
113
|
+
### flatten()
|
|
114
|
+
|
|
115
|
+
> `static` **flatten**(`err`): [`IError`](../interfaces/IError.md)[]
|
|
116
|
+
|
|
117
|
+
Flatten an error tree.
|
|
118
|
+
|
|
119
|
+
#### Parameters
|
|
120
|
+
|
|
121
|
+
• **err**: `unknown`
|
|
122
|
+
|
|
123
|
+
The starting error.
|
|
124
|
+
|
|
125
|
+
#### Returns
|
|
126
|
+
|
|
127
|
+
[`IError`](../interfaces/IError.md)[]
|
|
128
|
+
|
|
129
|
+
The list of all internal errors.
|
|
130
|
+
|
|
131
|
+
#### Inherited from
|
|
132
|
+
|
|
133
|
+
[`BaseError`](BaseError.md).[`flatten`](BaseError.md#flatten)
|
|
134
|
+
|
|
135
|
+
***
|
|
136
|
+
|
|
137
|
+
### expand()
|
|
138
|
+
|
|
139
|
+
> `static` **expand**(`errors`): `undefined` \| [`IError`](../interfaces/IError.md)
|
|
140
|
+
|
|
141
|
+
Expand an error tree.
|
|
142
|
+
|
|
143
|
+
#### Parameters
|
|
144
|
+
|
|
145
|
+
• **errors**: `undefined` \| [`IError`](../interfaces/IError.md)[]
|
|
146
|
+
|
|
147
|
+
The list of errors to expand.
|
|
148
|
+
|
|
149
|
+
#### Returns
|
|
150
|
+
|
|
151
|
+
`undefined` \| [`IError`](../interfaces/IError.md)
|
|
152
|
+
|
|
153
|
+
The first level error.
|
|
154
|
+
|
|
155
|
+
#### Inherited from
|
|
156
|
+
|
|
157
|
+
[`BaseError`](BaseError.md).[`expand`](BaseError.md#expand)
|
|
158
|
+
|
|
159
|
+
***
|
|
160
|
+
|
|
161
|
+
### isErrorName()
|
|
162
|
+
|
|
163
|
+
> `static` **isErrorName**(`error`, `name`): `error is BaseError`
|
|
164
|
+
|
|
165
|
+
Test to see if the error has the specified error name.
|
|
166
|
+
|
|
167
|
+
#### Parameters
|
|
168
|
+
|
|
169
|
+
• **error**: `unknown`
|
|
170
|
+
|
|
171
|
+
The error to test.
|
|
172
|
+
|
|
173
|
+
• **name**: `string` \| `RegExp`
|
|
174
|
+
|
|
175
|
+
The name to check for.
|
|
176
|
+
|
|
177
|
+
#### Returns
|
|
178
|
+
|
|
179
|
+
`error is BaseError`
|
|
180
|
+
|
|
181
|
+
True if the error has the name.
|
|
182
|
+
|
|
183
|
+
#### Inherited from
|
|
184
|
+
|
|
185
|
+
[`BaseError`](BaseError.md).[`isErrorName`](BaseError.md#iserrorname)
|
|
186
|
+
|
|
187
|
+
***
|
|
188
|
+
|
|
189
|
+
### isErrorMessage()
|
|
190
|
+
|
|
191
|
+
> `static` **isErrorMessage**(`error`, `message`): `error is BaseError`
|
|
192
|
+
|
|
193
|
+
Test to see if the error has the specified error message.
|
|
194
|
+
|
|
195
|
+
#### Parameters
|
|
196
|
+
|
|
197
|
+
• **error**: `unknown`
|
|
198
|
+
|
|
199
|
+
The error to test.
|
|
200
|
+
|
|
201
|
+
• **message**: `string` \| `RegExp`
|
|
202
|
+
|
|
203
|
+
The message to check for.
|
|
204
|
+
|
|
205
|
+
#### Returns
|
|
206
|
+
|
|
207
|
+
`error is BaseError`
|
|
208
|
+
|
|
209
|
+
True if the error has the name.
|
|
210
|
+
|
|
211
|
+
#### Inherited from
|
|
212
|
+
|
|
213
|
+
[`BaseError`](BaseError.md).[`isErrorMessage`](BaseError.md#iserrormessage)
|
|
214
|
+
|
|
215
|
+
***
|
|
216
|
+
|
|
217
|
+
### isErrorCode()
|
|
218
|
+
|
|
219
|
+
> `static` **isErrorCode**(`error`, `code`): `boolean`
|
|
220
|
+
|
|
221
|
+
Test to see if the error has the specified error code.
|
|
222
|
+
|
|
223
|
+
#### Parameters
|
|
224
|
+
|
|
225
|
+
• **error**: `unknown`
|
|
226
|
+
|
|
227
|
+
The error to test.
|
|
228
|
+
|
|
229
|
+
• **code**: `string` \| `RegExp`
|
|
230
|
+
|
|
231
|
+
The code to check for.
|
|
232
|
+
|
|
233
|
+
#### Returns
|
|
234
|
+
|
|
235
|
+
`boolean`
|
|
236
|
+
|
|
237
|
+
True if the error has the code.
|
|
238
|
+
|
|
239
|
+
#### Inherited from
|
|
240
|
+
|
|
241
|
+
[`BaseError`](BaseError.md).[`isErrorCode`](BaseError.md#iserrorcode)
|
|
242
|
+
|
|
243
|
+
***
|
|
244
|
+
|
|
245
|
+
### someErrorName()
|
|
246
|
+
|
|
247
|
+
> `static` **someErrorName**(`error`, `name`): `error is BaseError`
|
|
248
|
+
|
|
249
|
+
Test to see if any of the errors or children have the given error name.
|
|
250
|
+
|
|
251
|
+
#### Parameters
|
|
252
|
+
|
|
253
|
+
• **error**: `unknown`
|
|
254
|
+
|
|
255
|
+
The error to test.
|
|
256
|
+
|
|
257
|
+
• **name**: `string` \| `RegExp`
|
|
258
|
+
|
|
259
|
+
The name to check for.
|
|
260
|
+
|
|
261
|
+
#### Returns
|
|
262
|
+
|
|
263
|
+
`error is BaseError`
|
|
264
|
+
|
|
265
|
+
True if the error has the name.
|
|
266
|
+
|
|
267
|
+
#### Inherited from
|
|
268
|
+
|
|
269
|
+
[`BaseError`](BaseError.md).[`someErrorName`](BaseError.md#someerrorname)
|
|
270
|
+
|
|
271
|
+
***
|
|
272
|
+
|
|
273
|
+
### someErrorMessage()
|
|
274
|
+
|
|
275
|
+
> `static` **someErrorMessage**(`error`, `message`): `error is BaseError`
|
|
276
|
+
|
|
277
|
+
Test to see if any of the errors or children have the given error message.
|
|
278
|
+
|
|
279
|
+
#### Parameters
|
|
280
|
+
|
|
281
|
+
• **error**: `unknown`
|
|
282
|
+
|
|
283
|
+
The error to test.
|
|
284
|
+
|
|
285
|
+
• **message**: `string` \| `RegExp`
|
|
286
|
+
|
|
287
|
+
The message to check for.
|
|
288
|
+
|
|
289
|
+
#### Returns
|
|
290
|
+
|
|
291
|
+
`error is BaseError`
|
|
292
|
+
|
|
293
|
+
True if the error has the name.
|
|
294
|
+
|
|
295
|
+
#### Inherited from
|
|
296
|
+
|
|
297
|
+
[`BaseError`](BaseError.md).[`someErrorMessage`](BaseError.md#someerrormessage)
|
|
298
|
+
|
|
299
|
+
***
|
|
300
|
+
|
|
301
|
+
### someErrorClass()
|
|
302
|
+
|
|
303
|
+
> `static` **someErrorClass**(`error`, `cls`): `error is BaseError`
|
|
304
|
+
|
|
305
|
+
Test to see if any of the errors or children are from a specific class.
|
|
306
|
+
|
|
307
|
+
#### Parameters
|
|
308
|
+
|
|
309
|
+
• **error**: `unknown`
|
|
310
|
+
|
|
311
|
+
The error to test.
|
|
312
|
+
|
|
313
|
+
• **cls**: `string`
|
|
314
|
+
|
|
315
|
+
The class to check for.
|
|
316
|
+
|
|
317
|
+
#### Returns
|
|
318
|
+
|
|
319
|
+
`error is BaseError`
|
|
320
|
+
|
|
321
|
+
True if the error has the specific class.
|
|
322
|
+
|
|
323
|
+
#### Inherited from
|
|
324
|
+
|
|
325
|
+
[`BaseError`](BaseError.md).[`someErrorClass`](BaseError.md#someerrorclass)
|
|
326
|
+
|
|
327
|
+
***
|
|
328
|
+
|
|
329
|
+
### someErrorCode()
|
|
330
|
+
|
|
331
|
+
> `static` **someErrorCode**(`error`, `code`): `error is BaseError`
|
|
332
|
+
|
|
333
|
+
Test to see if any of the errors or children have the given error code.
|
|
334
|
+
|
|
335
|
+
#### Parameters
|
|
336
|
+
|
|
337
|
+
• **error**: `unknown`
|
|
338
|
+
|
|
339
|
+
The error to test.
|
|
340
|
+
|
|
341
|
+
• **code**: `string` \| `RegExp`
|
|
342
|
+
|
|
343
|
+
The code to check for.
|
|
344
|
+
|
|
345
|
+
#### Returns
|
|
346
|
+
|
|
347
|
+
`error is BaseError`
|
|
348
|
+
|
|
349
|
+
True if the error has the name.
|
|
350
|
+
|
|
351
|
+
#### Inherited from
|
|
352
|
+
|
|
353
|
+
[`BaseError`](BaseError.md).[`someErrorCode`](BaseError.md#someerrorcode)
|
|
354
|
+
|
|
355
|
+
***
|
|
356
|
+
|
|
357
|
+
### toJsonObject()
|
|
358
|
+
|
|
359
|
+
> **toJsonObject**(): [`IError`](../interfaces/IError.md)
|
|
360
|
+
|
|
361
|
+
Serialize the error to the error model.
|
|
362
|
+
|
|
363
|
+
#### Returns
|
|
364
|
+
|
|
365
|
+
[`IError`](../interfaces/IError.md)
|
|
366
|
+
|
|
367
|
+
The error model.
|
|
368
|
+
|
|
369
|
+
#### Inherited from
|
|
370
|
+
|
|
371
|
+
[`BaseError`](BaseError.md).[`toJsonObject`](BaseError.md#tojsonobject)
|
|
@@ -0,0 +1,375 @@
|
|
|
1
|
+
# Class: UnprocessableError
|
|
2
|
+
|
|
3
|
+
Class to handle errors when some data can not be processed.
|
|
4
|
+
|
|
5
|
+
## Extends
|
|
6
|
+
|
|
7
|
+
- [`BaseError`](BaseError.md)
|
|
8
|
+
|
|
9
|
+
## Constructors
|
|
10
|
+
|
|
11
|
+
### new UnprocessableError()
|
|
12
|
+
|
|
13
|
+
> **new UnprocessableError**(`source`, `message`, `properties`?, `inner`?): [`UnprocessableError`](UnprocessableError.md)
|
|
14
|
+
|
|
15
|
+
Create a new instance of UnprocessableError.
|
|
16
|
+
|
|
17
|
+
#### Parameters
|
|
18
|
+
|
|
19
|
+
• **source**: `string`
|
|
20
|
+
|
|
21
|
+
The source of the error.
|
|
22
|
+
|
|
23
|
+
• **message**: `string`
|
|
24
|
+
|
|
25
|
+
The message as a code.
|
|
26
|
+
|
|
27
|
+
• **properties?**
|
|
28
|
+
|
|
29
|
+
Any additional information for the error.
|
|
30
|
+
|
|
31
|
+
• **inner?**: `unknown`
|
|
32
|
+
|
|
33
|
+
The inner error if we have wrapped another error.
|
|
34
|
+
|
|
35
|
+
#### Returns
|
|
36
|
+
|
|
37
|
+
[`UnprocessableError`](UnprocessableError.md)
|
|
38
|
+
|
|
39
|
+
#### Overrides
|
|
40
|
+
|
|
41
|
+
[`BaseError`](BaseError.md).[`constructor`](BaseError.md#constructors)
|
|
42
|
+
|
|
43
|
+
## Properties
|
|
44
|
+
|
|
45
|
+
### source?
|
|
46
|
+
|
|
47
|
+
> `optional` **source**: `string`
|
|
48
|
+
|
|
49
|
+
The source of the error.
|
|
50
|
+
|
|
51
|
+
#### Inherited from
|
|
52
|
+
|
|
53
|
+
[`BaseError`](BaseError.md).[`source`](BaseError.md#source)
|
|
54
|
+
|
|
55
|
+
***
|
|
56
|
+
|
|
57
|
+
### properties?
|
|
58
|
+
|
|
59
|
+
> `optional` **properties**: `object`
|
|
60
|
+
|
|
61
|
+
Any additional information for the error.
|
|
62
|
+
|
|
63
|
+
#### Index Signature
|
|
64
|
+
|
|
65
|
+
\[`id`: `string`\]: `unknown`
|
|
66
|
+
|
|
67
|
+
#### Inherited from
|
|
68
|
+
|
|
69
|
+
[`BaseError`](BaseError.md).[`properties`](BaseError.md#properties)
|
|
70
|
+
|
|
71
|
+
***
|
|
72
|
+
|
|
73
|
+
### inner?
|
|
74
|
+
|
|
75
|
+
> `optional` **inner**: [`IError`](../interfaces/IError.md)
|
|
76
|
+
|
|
77
|
+
The inner error if there was one.
|
|
78
|
+
|
|
79
|
+
#### Inherited from
|
|
80
|
+
|
|
81
|
+
[`BaseError`](BaseError.md).[`inner`](BaseError.md#inner)
|
|
82
|
+
|
|
83
|
+
***
|
|
84
|
+
|
|
85
|
+
### CLASS\_NAME
|
|
86
|
+
|
|
87
|
+
> `readonly` `static` **CLASS\_NAME**: `string`
|
|
88
|
+
|
|
89
|
+
Runtime name for the class.
|
|
90
|
+
|
|
91
|
+
## Methods
|
|
92
|
+
|
|
93
|
+
### fromError()
|
|
94
|
+
|
|
95
|
+
> `static` **fromError**(`err`): [`BaseError`](BaseError.md)
|
|
96
|
+
|
|
97
|
+
Construct an error from an existing one.
|
|
98
|
+
|
|
99
|
+
#### Parameters
|
|
100
|
+
|
|
101
|
+
• **err**: `unknown`
|
|
102
|
+
|
|
103
|
+
The existing error.
|
|
104
|
+
|
|
105
|
+
#### Returns
|
|
106
|
+
|
|
107
|
+
[`BaseError`](BaseError.md)
|
|
108
|
+
|
|
109
|
+
The new instance.
|
|
110
|
+
|
|
111
|
+
#### Inherited from
|
|
112
|
+
|
|
113
|
+
[`BaseError`](BaseError.md).[`fromError`](BaseError.md#fromerror)
|
|
114
|
+
|
|
115
|
+
***
|
|
116
|
+
|
|
117
|
+
### flatten()
|
|
118
|
+
|
|
119
|
+
> `static` **flatten**(`err`): [`IError`](../interfaces/IError.md)[]
|
|
120
|
+
|
|
121
|
+
Flatten an error tree.
|
|
122
|
+
|
|
123
|
+
#### Parameters
|
|
124
|
+
|
|
125
|
+
• **err**: `unknown`
|
|
126
|
+
|
|
127
|
+
The starting error.
|
|
128
|
+
|
|
129
|
+
#### Returns
|
|
130
|
+
|
|
131
|
+
[`IError`](../interfaces/IError.md)[]
|
|
132
|
+
|
|
133
|
+
The list of all internal errors.
|
|
134
|
+
|
|
135
|
+
#### Inherited from
|
|
136
|
+
|
|
137
|
+
[`BaseError`](BaseError.md).[`flatten`](BaseError.md#flatten)
|
|
138
|
+
|
|
139
|
+
***
|
|
140
|
+
|
|
141
|
+
### expand()
|
|
142
|
+
|
|
143
|
+
> `static` **expand**(`errors`): `undefined` \| [`IError`](../interfaces/IError.md)
|
|
144
|
+
|
|
145
|
+
Expand an error tree.
|
|
146
|
+
|
|
147
|
+
#### Parameters
|
|
148
|
+
|
|
149
|
+
• **errors**: `undefined` \| [`IError`](../interfaces/IError.md)[]
|
|
150
|
+
|
|
151
|
+
The list of errors to expand.
|
|
152
|
+
|
|
153
|
+
#### Returns
|
|
154
|
+
|
|
155
|
+
`undefined` \| [`IError`](../interfaces/IError.md)
|
|
156
|
+
|
|
157
|
+
The first level error.
|
|
158
|
+
|
|
159
|
+
#### Inherited from
|
|
160
|
+
|
|
161
|
+
[`BaseError`](BaseError.md).[`expand`](BaseError.md#expand)
|
|
162
|
+
|
|
163
|
+
***
|
|
164
|
+
|
|
165
|
+
### isErrorName()
|
|
166
|
+
|
|
167
|
+
> `static` **isErrorName**(`error`, `name`): `error is BaseError`
|
|
168
|
+
|
|
169
|
+
Test to see if the error has the specified error name.
|
|
170
|
+
|
|
171
|
+
#### Parameters
|
|
172
|
+
|
|
173
|
+
• **error**: `unknown`
|
|
174
|
+
|
|
175
|
+
The error to test.
|
|
176
|
+
|
|
177
|
+
• **name**: `string` \| `RegExp`
|
|
178
|
+
|
|
179
|
+
The name to check for.
|
|
180
|
+
|
|
181
|
+
#### Returns
|
|
182
|
+
|
|
183
|
+
`error is BaseError`
|
|
184
|
+
|
|
185
|
+
True if the error has the name.
|
|
186
|
+
|
|
187
|
+
#### Inherited from
|
|
188
|
+
|
|
189
|
+
[`BaseError`](BaseError.md).[`isErrorName`](BaseError.md#iserrorname)
|
|
190
|
+
|
|
191
|
+
***
|
|
192
|
+
|
|
193
|
+
### isErrorMessage()
|
|
194
|
+
|
|
195
|
+
> `static` **isErrorMessage**(`error`, `message`): `error is BaseError`
|
|
196
|
+
|
|
197
|
+
Test to see if the error has the specified error message.
|
|
198
|
+
|
|
199
|
+
#### Parameters
|
|
200
|
+
|
|
201
|
+
• **error**: `unknown`
|
|
202
|
+
|
|
203
|
+
The error to test.
|
|
204
|
+
|
|
205
|
+
• **message**: `string` \| `RegExp`
|
|
206
|
+
|
|
207
|
+
The message to check for.
|
|
208
|
+
|
|
209
|
+
#### Returns
|
|
210
|
+
|
|
211
|
+
`error is BaseError`
|
|
212
|
+
|
|
213
|
+
True if the error has the name.
|
|
214
|
+
|
|
215
|
+
#### Inherited from
|
|
216
|
+
|
|
217
|
+
[`BaseError`](BaseError.md).[`isErrorMessage`](BaseError.md#iserrormessage)
|
|
218
|
+
|
|
219
|
+
***
|
|
220
|
+
|
|
221
|
+
### isErrorCode()
|
|
222
|
+
|
|
223
|
+
> `static` **isErrorCode**(`error`, `code`): `boolean`
|
|
224
|
+
|
|
225
|
+
Test to see if the error has the specified error code.
|
|
226
|
+
|
|
227
|
+
#### Parameters
|
|
228
|
+
|
|
229
|
+
• **error**: `unknown`
|
|
230
|
+
|
|
231
|
+
The error to test.
|
|
232
|
+
|
|
233
|
+
• **code**: `string` \| `RegExp`
|
|
234
|
+
|
|
235
|
+
The code to check for.
|
|
236
|
+
|
|
237
|
+
#### Returns
|
|
238
|
+
|
|
239
|
+
`boolean`
|
|
240
|
+
|
|
241
|
+
True if the error has the code.
|
|
242
|
+
|
|
243
|
+
#### Inherited from
|
|
244
|
+
|
|
245
|
+
[`BaseError`](BaseError.md).[`isErrorCode`](BaseError.md#iserrorcode)
|
|
246
|
+
|
|
247
|
+
***
|
|
248
|
+
|
|
249
|
+
### someErrorName()
|
|
250
|
+
|
|
251
|
+
> `static` **someErrorName**(`error`, `name`): `error is BaseError`
|
|
252
|
+
|
|
253
|
+
Test to see if any of the errors or children have the given error name.
|
|
254
|
+
|
|
255
|
+
#### Parameters
|
|
256
|
+
|
|
257
|
+
• **error**: `unknown`
|
|
258
|
+
|
|
259
|
+
The error to test.
|
|
260
|
+
|
|
261
|
+
• **name**: `string` \| `RegExp`
|
|
262
|
+
|
|
263
|
+
The name to check for.
|
|
264
|
+
|
|
265
|
+
#### Returns
|
|
266
|
+
|
|
267
|
+
`error is BaseError`
|
|
268
|
+
|
|
269
|
+
True if the error has the name.
|
|
270
|
+
|
|
271
|
+
#### Inherited from
|
|
272
|
+
|
|
273
|
+
[`BaseError`](BaseError.md).[`someErrorName`](BaseError.md#someerrorname)
|
|
274
|
+
|
|
275
|
+
***
|
|
276
|
+
|
|
277
|
+
### someErrorMessage()
|
|
278
|
+
|
|
279
|
+
> `static` **someErrorMessage**(`error`, `message`): `error is BaseError`
|
|
280
|
+
|
|
281
|
+
Test to see if any of the errors or children have the given error message.
|
|
282
|
+
|
|
283
|
+
#### Parameters
|
|
284
|
+
|
|
285
|
+
• **error**: `unknown`
|
|
286
|
+
|
|
287
|
+
The error to test.
|
|
288
|
+
|
|
289
|
+
• **message**: `string` \| `RegExp`
|
|
290
|
+
|
|
291
|
+
The message to check for.
|
|
292
|
+
|
|
293
|
+
#### Returns
|
|
294
|
+
|
|
295
|
+
`error is BaseError`
|
|
296
|
+
|
|
297
|
+
True if the error has the name.
|
|
298
|
+
|
|
299
|
+
#### Inherited from
|
|
300
|
+
|
|
301
|
+
[`BaseError`](BaseError.md).[`someErrorMessage`](BaseError.md#someerrormessage)
|
|
302
|
+
|
|
303
|
+
***
|
|
304
|
+
|
|
305
|
+
### someErrorClass()
|
|
306
|
+
|
|
307
|
+
> `static` **someErrorClass**(`error`, `cls`): `error is BaseError`
|
|
308
|
+
|
|
309
|
+
Test to see if any of the errors or children are from a specific class.
|
|
310
|
+
|
|
311
|
+
#### Parameters
|
|
312
|
+
|
|
313
|
+
• **error**: `unknown`
|
|
314
|
+
|
|
315
|
+
The error to test.
|
|
316
|
+
|
|
317
|
+
• **cls**: `string`
|
|
318
|
+
|
|
319
|
+
The class to check for.
|
|
320
|
+
|
|
321
|
+
#### Returns
|
|
322
|
+
|
|
323
|
+
`error is BaseError`
|
|
324
|
+
|
|
325
|
+
True if the error has the specific class.
|
|
326
|
+
|
|
327
|
+
#### Inherited from
|
|
328
|
+
|
|
329
|
+
[`BaseError`](BaseError.md).[`someErrorClass`](BaseError.md#someerrorclass)
|
|
330
|
+
|
|
331
|
+
***
|
|
332
|
+
|
|
333
|
+
### someErrorCode()
|
|
334
|
+
|
|
335
|
+
> `static` **someErrorCode**(`error`, `code`): `error is BaseError`
|
|
336
|
+
|
|
337
|
+
Test to see if any of the errors or children have the given error code.
|
|
338
|
+
|
|
339
|
+
#### Parameters
|
|
340
|
+
|
|
341
|
+
• **error**: `unknown`
|
|
342
|
+
|
|
343
|
+
The error to test.
|
|
344
|
+
|
|
345
|
+
• **code**: `string` \| `RegExp`
|
|
346
|
+
|
|
347
|
+
The code to check for.
|
|
348
|
+
|
|
349
|
+
#### Returns
|
|
350
|
+
|
|
351
|
+
`error is BaseError`
|
|
352
|
+
|
|
353
|
+
True if the error has the name.
|
|
354
|
+
|
|
355
|
+
#### Inherited from
|
|
356
|
+
|
|
357
|
+
[`BaseError`](BaseError.md).[`someErrorCode`](BaseError.md#someerrorcode)
|
|
358
|
+
|
|
359
|
+
***
|
|
360
|
+
|
|
361
|
+
### toJsonObject()
|
|
362
|
+
|
|
363
|
+
> **toJsonObject**(): [`IError`](../interfaces/IError.md)
|
|
364
|
+
|
|
365
|
+
Serialize the error to the error model.
|
|
366
|
+
|
|
367
|
+
#### Returns
|
|
368
|
+
|
|
369
|
+
[`IError`](../interfaces/IError.md)
|
|
370
|
+
|
|
371
|
+
The error model.
|
|
372
|
+
|
|
373
|
+
#### Inherited from
|
|
374
|
+
|
|
375
|
+
[`BaseError`](BaseError.md).[`toJsonObject`](BaseError.md#tojsonobject)
|