javax.microedition.ipdr.configuration
Class ConfigException
java.lang.Object
java.lang.Throwable
java.lang.Exception
javax.microedition.ipdr.configuration.ConfigException
- All Implemented Interfaces:
- java.io.Serializable
- public final class ConfigException
- extends java.lang.Exception
Exception thrown whenever there is an error in the configuration data.
This class specifies an exceptional condition occured due to a configuration data.
- Version:
- 1.0
- Author:
- Shai Gotlib
Fields inherited from class java.lang.Exception |
|
Constructor Summary |
ConfigException(java.lang.Object o,
java.lang.String function,
java.lang.String msg)
Creates an exception, from the object (e.g., the running thread), the
function (or method) in the object, and the message. |
ConfigException(java.lang.String msg)
Creates an exception, from a single string. |
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 msg)
- Creates an exception, from a single string.
- Parameters:
msg
- the detail message.
ConfigException
public ConfigException(java.lang.Object o,
java.lang.String function,
java.lang.String msg)
- Creates an exception, from the object (e.g., the running thread), the
function (or method) in the object, and the message.
- Parameters:
o
- the object (e.g., the running thread).function
- the function (or method) in the object.msg
- the detail message about what went wrong.