import { BaseException } from '../exception/BaseException'; import { Branch } from "../Branch"; export declare const BRANCH_ALREADY_EXIST_EXCEPTION_CODE = "branchAlreadyExists"; export declare const BRANCH_ALREADY_EXIST_EXCEPTION_NAME = "com.enonic.xp.repo.impl.repository.BranchAlreadyExistException"; export declare class BranchAlreadyExistException extends BaseException { branch: Branch; constructor(branch: Branch); getBranch(): Branch; getCode(): string; }