/** * 服务器端异常实体 */ declare class ServerExceptionEntity { Code: string; Level: ExceptionLevel; Message: string; Detail: string; RequestId: string; date?: string; innerMessage?: string; } /** * 服务器端异常等级 */ declare const enum ExceptionLevel { /** * 提示信息 */ Info = 0, /** * 警告 */ Warning = 1, /** * 错误 */ Error = 2, /** * 致命错误 */ Fatal = 3 } export { ServerExceptionEntity, ExceptionLevel };