export declare class BaseException extends Error {
    readonly code: number;
    static toException(e: Error): BaseException;
    getDescription(): string;
}
