/** * Custom error types for the scriptures library. */ /** * Raised when a scripture edition is not found or not registered. */ export declare class EditionNotFoundError extends Error { constructor(edition: string); } /** * Raised when a book is not found in an edition. */ export declare class BookNotFoundError extends Error { constructor(book: string, edition: string); } /** * Raised when a verse is not found. */ export declare class VerseNotFoundError extends Error { constructor(book: string, chapter: number, verse: number, edition: string); } /** * Raised when gematria calculation fails. */ export declare class GematriaError extends Error { constructor(message: string); } //# sourceMappingURL=errors.d.ts.map