UNPKG

494 BTypeScriptView Raw
1import { Subject } from "../persistence/Subject";
2/**
3 * Thrown when operation is going to be executed on a subject without identifier.
4 * This error should never be thrown, however it still presents to prevent user from updation or removing the whole table.
5 * If this error occurs still, it most probably is an ORM internal problem which must be reported and fixed.
6 */
7export declare class SubjectWithoutIdentifierError extends Error {
8 name: string;
9 constructor(subject: Subject);
10}