Package net.sf.basedb.core
Class ConfigurationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- net.sf.basedb.core.BaseException
-
- net.sf.basedb.core.ConfigurationException
-
- All Implemented Interfaces:
Serializable
public class ConfigurationException extends BaseException
This exception is thrown by theConfig
class if there is a problem with finding or loading the configuration settings.- Version:
- 2.0
- Author:
- Nicklas
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description ConfigurationException(String message)
Creates a newConfigurationException
.ConfigurationException(String message, Throwable cause)
Creates a newConfigurationException
with a cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ConfigurationException
public ConfigurationException(String message)
Creates a newConfigurationException
.- Parameters:
message
- The message of the exception
-
-