
hudson.maven.agent.AbortException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-interceptor Show documentation
Show all versions of maven-interceptor Show documentation
Plexus module that intercepts invocations of key Maven components
so that Hudson can monitor what's going on in Maven.
The newest version!
/*******************************************************************************
*
* Copyright (c) 2004-2009 Oracle Corporation.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
*
* Kohsuke Kawaguchi
*
*
*******************************************************************************/
package hudson.maven.agent;
/**
* Thrown when {@link PluginManagerListener} returned false to orderly
* abort the execution. The caller shouldn't dump the stack trace for
* this exception.
*/
public final class AbortException extends RuntimeException {
public AbortException(String message) {
super(message);
}
public AbortException(String message, Exception e) {
super(message, e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy