import { Exception } from '@spinajs/exceptions'; import { IDriverOptions } from './interfaces.js'; /** * Exception thrown when functionality is not supported */ export declare class OrmException extends Exception { driver?: Partial | undefined; query?: string | undefined; bindings?: any; inner?: Error | unknown; constructor(message?: string, driver?: Partial | undefined, query?: string | undefined, bindings?: any, inner?: Error | unknown); toString(): void; } /** * Exception thrown when functionality is not supported */ export declare class OrmNotFoundException extends OrmException { } /** * Exception thrown when insert / update / delete affected no rows * eg. delete of an already deleted model */ export declare class NoRowsAffected extends OrmException { constructor(message?: string); } //# sourceMappingURL=exceptions.d.ts.map