/** * Exception thrown when a model record cannot be found. */ export declare class ModelNotFoundException extends Error { readonly modelName: string; readonly id: number | string; /** * @param modelName - Model class name. * @param id - The primary key that was searched. */ constructor(modelName: string, id: number | string); } //# sourceMappingURL=ModelNotFoundException.d.ts.map