Package org.hudsonci.service

Examples of org.hudsonci.service.BuildNotFoundException


    public AbstractBuild<?, ?> getBuild(final AbstractProject<?,?> project, final int buildNumber)
            throws BuildNotFoundException {
        AbstractBuild<?, ?> build = findBuild(project, buildNumber);
        if (build == null) {
            throw new BuildNotFoundException("Build " + project.getName() + " #" + buildNumber + " could not be found.");
        }
        return build;
    }
View Full Code Here

TOP

Related Classes of org.hudsonci.service.BuildNotFoundException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.