export interface Exception {
    class: string;
    error: string;
    revert: boolean;
    trace: string[];
}
