@liberation-data/drivine
Version:
Best and fastest graph database client for TypeScript / Node.js. Provides a level of abstraction for building highly scalable applications, without compromising architectural integrity
8 lines (7 loc) • 366 B
TypeScript
import { QuerySpecification } from './query/QuerySpecification';
export declare class DrivineError extends Error {
readonly rootCause?: Error;
readonly spec?: QuerySpecification<any>;
static withRootCause(cause: Error, spec?: QuerySpecification<any>): DrivineError;
constructor(message?: string, rootCause?: Error, spec?: QuerySpecification<any>);
}