mirror of https://github.com/wg-easy/wg-easy
1 changed files with 10 additions and 0 deletions
@ -0,0 +1,10 @@ |
|||
'use strict'; |
|||
|
|||
module.exports = class ServerError extends Error { |
|||
|
|||
constructor(message, statusCode = 500) { |
|||
super(message); |
|||
this.statusCode = statusCode; |
|||
} |
|||
|
|||
}; |
Loading…
Reference in new issue