KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > hudson > maven > agent > AbortException


1 package hudson.maven.agent;
2
3 import org.apache.maven.plugin.PluginManagerException;
4
5 /**
6  * Thrown when {@link PluginManagerListener} returned false to orderly
7  * abort the execution. The caller shouldn't dump the stack trace for
8  * this exception.
9  */

10 public final class AbortException extends PluginManagerException {
11     public AbortException(String JavaDoc message) {
12         super(message);
13     }
14     public AbortException(String JavaDoc message, Exception JavaDoc e) {
15         super(message, e);
16     }
17 }
18
Popular Tags