All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.enonic.xp.repository.BranchNotFoundException Maven / Gradle / Ivy

The newest version!
package com.enonic.xp.repository;

import com.enonic.xp.branch.Branch;
import com.enonic.xp.exception.BaseException;

public class BranchNotFoundException
    extends BaseException
{
    public BranchNotFoundException( final Branch branch )
    {
        super( "Branch with id [" + branch + "] not found" );
    }

    @Override
    public String getCode()
    {
        return "branchNotFound";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy