UNPKG
@daisugi/kintsugi
Version:
latest (0.7.2)
0.7.2
0.7.1
0.7.0
0.5.2
0.5.0
0.4.7
0.4.6
0.4.5
0.4.4
0.4.3
0.4.2
0.4.1
0.4.0
0.3.9
0.3.8
0.3.7
0.3.4
0.3.3
0.3.2
0.3.0
0.2.0
0.1.0
0.0.4
0.0.3
0.0.2
Kintsugi is a set of utilities to help build a fault tolerant services.
daisugiland/daisugi
@daisugi/kintsugi
/
src
/
custom_error.ts
11 lines
(10 loc)
•
214 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
class
CustomError
extends
Error
{
constructor
(
message
:
string
,
readonly
code
:
string
,
) {
super
(message);
this
.
name
= code;
Object
.
setPrototypeOf
(
this
,
CustomError
.
prototype
); } }