Files
myDrive/backend/utils/InternalServerError.js
T

10 lines
164 B
JavaScript

class InternalServerError extends Error {
constructor(args) {
super(args);
this.code = 500;
}
}
module.exports = InternalServerError;