export declare class Exception {
    cause: string | null;
    column: number | null;
    line: number | null;
    message: string;
    stackTrace: any[];
    url: string;
    constructor(cause: string | null, column: number | null, line: number | null, message: string, stackTrace: any[], url: string);
}
