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