|
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.InvalidPluginConfigurationException
public class InvalidPluginConfigurationException extends Exception
An exception signifying that a misconfiguration error has occurred. Contains a list of errors that can be retrieved using getErrors() and is set in the constructor.
| Field Summary | |
|---|---|
private List |
errors
|
private static long |
serialVersionUID
|
| Constructor Summary | |
InvalidPluginConfigurationException(String message)
|
|
InvalidPluginConfigurationException(String message, Exception ex)
|
|
InvalidPluginConfigurationException(String message, List errors)
Creates a new exception with the given message and error messages. |
|
InvalidPluginConfigurationException(String message, List errors, Exception ex)
Creates a new exception with the given message, error messages, and inner exception. |
|
| Method Summary | |
|---|---|
List
|
getErrors()
Retrieves the list of error messages set in the constructor. |
| 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 List errors
private static final long serialVersionUID
| Constructor Detail |
|---|
public InvalidPluginConfigurationException(String message)
public InvalidPluginConfigurationException(String message, Exception ex)
public InvalidPluginConfigurationException(String message, List errors)
message - The typical exception messageerrors - A list of error messages specifying why the configuration did not pass
public InvalidPluginConfigurationException(String message, List errors, Exception ex)
message - The typical exception messageerrors - A list of error messages specifying why the configuration did not passex - An inner exception
| Method Detail |
|---|
public List getErrors()
Groovy Documentation