File tree 1 file changed +4
-0
lines changed
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ export class NotFoundError extends NetworkError {
31
31
super ( message , response ) ;
32
32
this . __proto__ = trueProto ;
33
33
this . constructor = NotFoundError ;
34
+ this . name = "NotFoundError" ;
34
35
}
35
36
}
36
37
@@ -40,6 +41,7 @@ export class BadRequestError extends NetworkError {
40
41
super ( message , response ) ;
41
42
this . __proto__ = trueProto ;
42
43
this . constructor = BadRequestError ;
44
+ this . name = "BadRequestError" ;
43
45
}
44
46
}
45
47
@@ -49,6 +51,7 @@ export class BadResponseError extends NetworkError {
49
51
super ( message , response ) ;
50
52
this . __proto__ = trueProto ;
51
53
this . constructor = BadResponseError ;
54
+ this . name = "BadResponseError" ;
52
55
}
53
56
}
54
57
@@ -60,5 +63,6 @@ export class InvalidSep10ChallengeError extends Error {
60
63
super ( message ) ;
61
64
this . __proto__ = trueProto ;
62
65
this . constructor = InvalidSep10ChallengeError ;
66
+ this . name = "InvalidSep10ChallengeError" ;
63
67
}
64
68
}
You can’t perform that action at this time.
0 commit comments