UNPKG

@clickup/ent-framework

Version:

A PostgreSQL graph-database-alike library with microsharding and row-level security

11 lines 518 B
import { EntAccessError } from "./EntAccessError"; /** * Error: non-existing ID in the database (failed loadX() call), or non-existing * Ent (failed loadByX() call). Notice that `where` data is intentionally NOT * considered as private and may be delivered to the client. */ export declare class EntNotFoundError extends EntAccessError { readonly where: Record<string, unknown>; constructor(entName: string, where: Record<string, unknown>, cause?: unknown); } //# sourceMappingURL=EntNotFoundError.d.ts.map