Files
PayDirt/node_modules/tedious/lib/errors.d.ts

18 lines
605 B
TypeScript
Raw Normal View History

2025-11-12 10:13:24 -05:00
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 {
}