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