mirror of
https://github.com/MeowLynxSea/Proksea.git
synced 2025-07-11 03:44:39 +00:00
12 lines
407 B
TypeScript
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
|