org.jscience.ml.om.util
Class ConfigException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.jscience.ml.om.FGCAException
org.jscience.ml.om.util.ConfigException
- All Implemented Interfaces:
- java.io.Serializable
public class ConfigException
- extends FGCAException
The ConfigException indicates problems during loading or initializing of
configuration information.
Typical causes of a ConfigException may be: Corrupted JAR file, corrupted
JAR file entry, corrupted config file (header information bad, or not
given, type or classpath not set...)
- Since:
- 1.0
- See Also:
- Serialized Form
|
Constructor Summary |
ConfigException(java.lang.String message)
Constructs a new ConfigException. |
ConfigException(java.lang.String message,
java.lang.Throwable cause)
Constructs a new ConfigException. |
| Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
ConfigException
public ConfigException(java.lang.String message)
- Constructs a new ConfigException.
- Parameters:
message - Message which describes the cause of the
problem.
ConfigException
public ConfigException(java.lang.String message,
java.lang.Throwable cause)
- Constructs a new ConfigException.
- Parameters:
message - Message which describes the cause of the
problem.cause - A exception that was the root cause of this
ConfigException.