|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.lang.Throwable
com.adaptc.mws.plugins.InvalidPluginConfigurationException
public class InvalidPluginConfigurationException extends Throwable
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(List errors)
Sets the errors to the list provided. |
|
InvalidPluginConfigurationException(String error)
Creates an exception with a list of errors consisting of a single element. |
Method Summary | |
---|---|
List
|
getErrors()
Retrieves the list of error messages set in the constructor. |
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(List errors)
errors
- The list of errors
public InvalidPluginConfigurationException(String error)
error
- The single error
Method Detail |
---|
public List getErrors()
Groovy Documentation