/** * PRSense Error Types * * Standardized error types for better error handling in enterprise environments */ export declare class PRSenseError extends Error { code: string; constructor(message: string, code: string); } export declare class ValidationError extends PRSenseError { field?: string | undefined; constructor(message: string, field?: string | undefined); } export declare class StorageError extends PRSenseError { cause?: Error | undefined; constructor(message: string, cause?: Error | undefined); } export declare class EmbeddingError extends PRSenseError { cause?: Error | undefined; constructor(message: string, cause?: Error | undefined); } export declare class ConfigurationError extends PRSenseError { constructor(message: string); } //# sourceMappingURL=errors.d.ts.map