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