botbook/node_modules/@azure/msal-common/dist/error/ServerError.d.ts
Rodrigo Rodriguez 6ae15fe3e5 Updated.
2024-09-04 13:13:15 -03:00

16 lines
No EOL
512 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;
/**
* Http status number;
*/
readonly status?: number;
constructor(errorCode?: string, errorMessage?: string, subError?: string, errorNo?: string, status?: number);
}
//# sourceMappingURL=ServerError.d.ts.map