@halsp/http
Version:
支持 Halsp HTTP 请求
8 lines • 318 B
JavaScript
import { StatusCodes } from "http-status-codes";
import { HttpException } from "./http-exception.mjs";
export class InternalServerErrorException extends HttpException {
constructor(error) {
super(StatusCodes.INTERNAL_SERVER_ERROR, error);
}
}
//# sourceMappingURL=internal-server-error-exception.js.map