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 newConfigurationRuntimeExceptionwithout specified detail message.ConfigurationRuntimeException(String message) Constructs a newConfigurationRuntimeExceptionwith specified detail message.ConfigurationRuntimeException(String message, Throwable cause) Constructs a newConfigurationRuntimeExceptionwith specified detail message and nestedThrowable.Constructs a newConfigurationRuntimeExceptionwith 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, printStackTraceMethods inherited from class Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getStackTrace, getSuppressed, initCause, setStackTrace, toString
-
Constructor Details
-
ConfigurationRuntimeException
public ConfigurationRuntimeException()Constructs a newConfigurationRuntimeExceptionwithout specified detail message. -
ConfigurationRuntimeException
Constructs a newConfigurationRuntimeExceptionwith specified detail message.- Parameters:
message- the error message
-
ConfigurationRuntimeException
Constructs a newConfigurationRuntimeExceptionwith specified nestedThrowable.- Parameters:
cause- the exception or error that caused this exception to be thrown
-
ConfigurationRuntimeException
Constructs a newConfigurationRuntimeExceptionwith specified detail message and nestedThrowable.- Parameters:
message- the error messagecause- the exception or error that caused this exception to be thrown
-