Package org.apache.commons.configuration
Class ConfigurationRuntimeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.commons.lang.exception.NestableRuntimeException
org.apache.commons.configuration.ConfigurationRuntimeException
- All Implemented Interfaces:
Serializable
,org.apache.commons.lang.exception.Nestable
- Direct Known Subclasses:
ConversionException
public class ConfigurationRuntimeException
extends org.apache.commons.lang.exception.NestableRuntimeException
A configuration related runtime exception.
- Since:
- 1.0
- Version:
- $Id: ConfigurationRuntimeException.java 1208785 2011-11-30 21:13:50Z oheger $
- Author:
- Emmanuel Bourg
- See Also:
-
Field Summary
Fields inherited from class org.apache.commons.lang.exception.NestableRuntimeException
delegate
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a newConfigurationRuntimeException
without specified detail message.ConfigurationRuntimeException
(String message) Constructs a newConfigurationRuntimeException
with specified detail message.ConfigurationRuntimeException
(String message, Throwable cause) Constructs a newConfigurationRuntimeException
with specified detail message and nestedThrowable
.Constructs a newConfigurationRuntimeException
with specified nestedThrowable
. -
Method Summary
Methods inherited from class org.apache.commons.lang.exception.NestableRuntimeException
getCause, getMessage, getMessage, getMessages, getThrowable, getThrowableCount, getThrowables, indexOfThrowable, indexOfThrowable, printPartialStackTrace, printStackTrace, printStackTrace, printStackTrace
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getStackTrace, getSuppressed, initCause, setStackTrace, toString
-
Constructor Details
-
ConfigurationRuntimeException
public ConfigurationRuntimeException()Constructs a newConfigurationRuntimeException
without specified detail message. -
ConfigurationRuntimeException
Constructs a newConfigurationRuntimeException
with specified detail message.- Parameters:
message
- the error message
-
ConfigurationRuntimeException
Constructs a newConfigurationRuntimeException
with specified nestedThrowable
.- Parameters:
cause
- the exception or error that caused this exception to be thrown
-
ConfigurationRuntimeException
Constructs a newConfigurationRuntimeException
with specified detail message and nestedThrowable
.- Parameters:
message
- the error messagecause
- the exception or error that caused this exception to be thrown
-