de.lehmannet.om.util
Class ConfigException
java.lang.Object
java.lang.Throwable
java.lang.Exception
de.lehmannet.om.COMASTException
de.lehmannet.om.util.ConfigException
- All Implemented Interfaces:
- java.io.Serializable
public class ConfigException
- extends COMASTException
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
- Author:
- doergn@users.sourceforge.net
- 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.