18 lines
605 B
TypeScript
18 lines
605 B
TypeScript
export declare class ConnectionError extends Error {
|
|
code: string | undefined;
|
|
isTransient: boolean | undefined;
|
|
constructor(message: string, code?: string, options?: ErrorOptions);
|
|
}
|
|
export declare class RequestError extends Error {
|
|
code: string | undefined;
|
|
number: number | undefined;
|
|
state: number | undefined;
|
|
class: number | undefined;
|
|
serverName: string | undefined;
|
|
procName: string | undefined;
|
|
lineNumber: number | undefined;
|
|
constructor(message: string, code?: string, options?: ErrorOptions);
|
|
}
|
|
export declare class InputError extends TypeError {
|
|
}
|