@halsp/http
Version:
支持 Halsp HTTP 请求
12 lines • 524 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.RequestTooLongException = void 0;
const http_status_codes_1 = require("http-status-codes");
const http_exception_1 = require("./http-exception.cjs");
class RequestTooLongException extends http_exception_1.HttpException {
constructor(error) {
super(http_status_codes_1.StatusCodes.REQUEST_TOO_LONG, error);
}
}
exports.RequestTooLongException = RequestTooLongException;
//# sourceMappingURL=request-too-long-exception.js.map
;