Package org.apache.cayenne
Class ConfigurationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.cayenne.CayenneRuntimeException
org.apache.cayenne.ConfigurationException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
DataDomainLoadException
A runtime exception thrown on failures in Cayenne configuration.
- See Also:
-
Constructor Summary
ConstructorDescriptionCreates newConfigurationException
without detail message.ConfigurationException
(String messageFormat, Object... messageArgs) Constructs an exception with the specified message with an optional list of message formatting arguments.ConfigurationException
(String messageFormat, Throwable cause, Object... messageArgs) ConfigurationException
(Throwable cause) Constructs an exception wrapping another exception thrown elsewhere. -
Method Summary
Methods inherited from class org.apache.cayenne.CayenneRuntimeException
getExceptionLabel, getMessage, getUnlabeledMessage
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ConfigurationException
public ConfigurationException()Creates newConfigurationException
without detail message. -
ConfigurationException
Constructs an exception with the specified message with an optional list of message formatting arguments. Message formatting rules follow "String.format(..)" conventions. -
ConfigurationException
Constructs an exception wrapping another exception thrown elsewhere. -
ConfigurationException
-