export declare class Exception extends Error { readonly innerException: Exception | null; constructor(message: string, innerException?: Exception | null); static FromError(error: Error): Exception; logError(): void; } //# sourceMappingURL=Exception.d.ts.map