export declare class ErrorCodeException {
    code: string;
    message: string;
    constructor(code: string, message: string);
}
