/** * 响应状态异常 * @author LL * @date 2022-01-20 上午 10:32 **/ export declare class ResponseStatusException extends Error { name: string; message: string; /** * 携带响应对象 * @type {R} */ data: R; private readonly NAME; constructor(res: R, message?: string, name?: string); } //# sourceMappingURL=ResponseStatusException.d.ts.map