fix: revert ServerError.js

This commit is contained in:
cany748 2024-02-28 16:27:33 +07:00
parent e8a160b14f
commit 7efdbf38e4
1 changed files with 10 additions and 0 deletions

10
src/lib/ServerError.js Normal file
View File

@ -0,0 +1,10 @@
'use strict';
module.exports = class ServerError extends Error {
constructor(message, statusCode = 500) {
super(message);
this.statusCode = statusCode;
}
};