Proksea/node_modules/@azure/msal-common/dist/error/ServerError.d.ts
2024-07-05 00:09:37 +08:00

12 lines
407 B
TypeScript

import { AuthError } from "./AuthError";
/**
* Error thrown when there is an error with the server code, for example, unavailability.
*/
export declare class ServerError extends AuthError {
/**
* Server error number;
*/
readonly errorNo?: string;
constructor(errorCode?: string, errorMessage?: string, subError?: string, errorNo?: string);
}
//# sourceMappingURL=ServerError.d.ts.map