UNPKG

@halsp/http

Version:

支持 Halsp HTTP 请求

8 lines 293 B
import { StatusCodes } from "http-status-codes"; import { HttpException } from "./http-exception.mjs"; export class UnauthorizedException extends HttpException { constructor(error) { super(StatusCodes.UNAUTHORIZED, error); } } //# sourceMappingURL=unauthorized-exception.js.map