import { BaseException } from '../exception/BaseException'; export declare const REPOSITORY_NOT_FOUND_EXCEPTION_CODE = "repositoryNotFound"; export declare const REPOSITORY_NOT_FOUND_EXCEPTION_NAME = "com.enonic.xp.repository.RepositoryNotFoundException"; export declare class RepositoryNotFoundException extends BaseException { constructor(repoId: string); getCode(): string; }