@enonic/mock-xp
Version:
Mock Enonic XP API JavaScript Library
11 lines (10 loc) • 479 B
TypeScript
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;
}