UNPKG

@promptbook/vercel

Version:

Promptbook: Turn your company's scattered knowledge into AI ready books

13 lines (12 loc) 376 B
/** * This error indicates error from the database * * @public exported from `@promptbook/core` */ export declare class DatabaseError extends Error { readonly name = "DatabaseError"; constructor(message: string); } /** * TODO: [🐱‍🚀] Explain that NotFoundError ([🐱‍🚀] and other specific errors) has priority over DatabaseError in some contexts */