import { BaseException } from '../exception/BaseException'; export declare const BRANCH_NOT_FOUND_EXCEPTION_CODE = "branchNotFound"; export declare const BRANCH_NOT_FOUND_EXCEPTION_NAME = "com.enonic.xp.repository.BranchNotFoundException"; export declare class BranchNotFoundException extends BaseException { constructor(branchName: string); getCode(): string; }