export class ApiError extends Error { status: number; code: string; correlationId: string; constructor(status: number, code: string, message: string, correlationId: string) { super(message); this.status = status; this.code = code; this.correlationId = correlationId; } }