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
/
dist
/
esm
/
custom_error.js
10 lines
•
268 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
class
CustomError
extends
Error
{ code;
constructor
(
message, code
) {
super
(message);
this
.
code
= code;
this
.
name
= code;
Object
.
setPrototypeOf
(
this
,
CustomError
.
prototype
); } }
//# sourceMappingURL=custom_error.js.map