/** * ClickHouse server exception with full error details. * Shared between HTTP and TCP clients. */ export declare class ClickHouseException extends Error { readonly code: number; readonly exceptionName: string; readonly serverStackTrace: string; readonly hasNested: boolean; readonly nested?: ClickHouseException; constructor(code: number, exceptionName: string, message: string, serverStackTrace: string, hasNested: boolean, nested?: ClickHouseException); } //# sourceMappingURL=errors.d.ts.map