export declare abstract class BaseException extends Error { status: number; type: string; traceId: string; source: string; data: any; constructor(message: string, status: number, data?: any, ex?: any); setTraceId: (traceId: string) => void; /** * Converting the error to JSON to be returned to Front */ toJson: () => string; } export default BaseException;