mirror of
https://github.com/danbulant/flying-squid
synced 2026-07-06 03:31:10 +00:00
actually fix UserError checking
This commit is contained in:
parent
a12039e1bd
commit
5ffbdd0373
1 changed files with 1 additions and 1 deletions
|
|
@ -9,8 +9,8 @@ class ExtendableError extends Error {
|
||||||
|
|
||||||
class UserError extends ExtendableError {
|
class UserError extends ExtendableError {
|
||||||
constructor(message) {
|
constructor(message) {
|
||||||
this.userError=1;
|
|
||||||
super(message);
|
super(message);
|
||||||
|
this.userError=1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue