|
Groovy Documentation | |||||||
| FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
java.lang.Objectjava.lang.Throwable
java.lang.Exception
com.ace.mws.plugins.exceptions.PluginStopException
public class PluginStopException extends Exception
Signifies that a plugin was not able to be stopped without errors.
Contains an additional property that can be retrieved with getPluginRunning().
| Field Summary | |
|---|---|
private boolean |
pluginRunning
|
private static long |
serialVersionUID
|
| Constructor Summary | |
PluginStopException()
|
|
PluginStopException(String message)
|
|
PluginStopException(String message, Exception ex)
|
|
PluginStopException(boolean pluginRunning)
Creates a new exception with the getPluginRunning() property set to the specified value. |
|
PluginStopException(String message, boolean pluginRunning)
Creates a new exception with the getPluginRunning() property set to the specified value. |
|
PluginStopException(String message, Exception ex, boolean pluginRunning)
Creates a new exception with the getPluginRunning() property set to the specified value. |
|
| Method Summary | |
|---|---|
boolean
|
getPluginRunning()
CURRENTLY UNSUPPORTED |
| Methods inherited from class Exception | |
|---|---|
| printStackTrace, printStackTrace, printStackTrace, fillInStackTrace, getCause, initCause, toString, getMessage, getLocalizedMessage, getStackTrace, setStackTrace, wait, wait, wait, equals, hashCode, getClass, notify, notifyAll |
| Methods inherited from class Throwable | |
|---|---|
| printStackTrace, printStackTrace, printStackTrace, fillInStackTrace, getCause, initCause, toString, getMessage, getLocalizedMessage, getStackTrace, setStackTrace, wait, wait, wait, equals, hashCode, getClass, notify, notifyAll |
| Methods inherited from class Object | |
|---|---|
| wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll |
| Field Detail |
|---|
private boolean pluginRunning
private static final long serialVersionUID
| Constructor Detail |
|---|
public PluginStopException()
public PluginStopException(String message)
public PluginStopException(String message, Exception ex)
public PluginStopException(boolean pluginRunning)
pluginRunning - True if the plugin is running, false otherwise
public PluginStopException(String message, boolean pluginRunning)
message - A typical exception messagepluginRunning - True if the plugin is running, false otherwise
public PluginStopException(String message, Exception ex, boolean pluginRunning)
message - A typical exception messageex - An inner exceptionpluginRunning - True if the plugin is running, false otherwise
| Method Detail |
|---|
public boolean getPluginRunning()
Groovy Documentation