/** * 核心异常类 * ProxyAuthenticationRequiredException * code 407 * @author ranyunlong<549510622@qq.com> * license MIT */ import { HttpException, Properties } from "./HttpException"; import { HttpStatus } from "../enum"; /** * @code 407 */ export class ProxyAuthenticationRequiredException extends HttpException { constructor(properties?: Properties | boolean, error?: Properties, message?: string) { super({ message, properties, error, status: HttpStatus.PROXY_AUTHENTICATION_REQUIRED }) } }