Structure for standardized application errors.
export interface AppError { type: ErrorType; message: string; originalError?: unknown; code?: string; recoveryAction?: ErrorRecoveryAction; recoveryMessage?: string;} Copy
export interface AppError { type: ErrorType; message: string; originalError?: unknown; code?: string; recoveryAction?: ErrorRecoveryAction; recoveryMessage?: string;}
Optional
Structure for standardized application errors.
Source