UNPKG

@halsp/http

Version:

支持 Halsp HTTP 请求

8 lines 283 B
import { StatusCodes } from "http-status-codes"; import { HttpException } from "./http-exception.mjs"; export class NotFoundException extends HttpException { constructor(error) { super(StatusCodes.NOT_FOUND, error); } } //# sourceMappingURL=not-found-exception.js.map