export declare class Exception extends Error {
    constructor(message: string, inner?: Error);
    innerError?: Error;
}
