export declare class Exception {
    message?: string | undefined;
    wrapped?: any | undefined;
    constructor(message?: string | undefined, wrapped?: any | undefined);
}
