Files
myDrive/dist/utils/InternalServerError.js
T

9 lines
172 B
JavaScript

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