@mvx/mvc
Version:
@mvx/mvc is mvc framework on server, base on koa, @tsdi frameworks
23 lines (21 loc) • 607 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InternalServerError = void 0;
const HttpError_1 = require("./HttpError");
/**
* internal server error.
*
* @export
* @class InternalServerError
* @extends {HttpError}
*/
class InternalServerError extends HttpError_1.HttpError {
constructor(message = 'Internal Server Error') {
super(500, message);
}
static ρAnn() {
return { "name": "InternalServerError" };
}
}
exports.InternalServerError = InternalServerError;
//# sourceMappingURL=../sourcemaps/errors/InternalServerError.js.map