org.huihoo.jfox.ejb.exception
Class ConfigurationException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--org.huihoo.jfox.ejb.exception.NestedException
|
+--org.huihoo.jfox.ejb.exception.ConfigurationException
- All Implemented Interfaces:
- NestedThrowable, java.io.Serializable
- public class ConfigurationException
- extends NestedException
- Version:
- $0.9.0$
- Author:
- tai_1219@sina.com
- See Also:
- Serialized Form
|
Constructor Summary |
ConfigurationException()
Construct a ConfigurationException with no detail. |
ConfigurationException(java.lang.String msg)
Construct a ConfigurationException with the specified detail
message. |
ConfigurationException(java.lang.String msg,
java.lang.Throwable nested)
Construct a ConfigurationException with the specified detail
message and nested Throwable. |
ConfigurationException(java.lang.Throwable nested)
Construct a ConfigurationException with the specified
nested Throwable. |
| Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, getStackTrace, initCause, setStackTrace, toString |
| Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
ConfigurationException
public ConfigurationException()
- Construct a ConfigurationException with no detail.
ConfigurationException
public ConfigurationException(java.lang.Throwable nested)
- Construct a ConfigurationException with the specified
nested Throwable.
- Parameters:
nested - Nested Throwable.
ConfigurationException
public ConfigurationException(java.lang.String msg,
java.lang.Throwable nested)
- Construct a ConfigurationException with the specified detail
message and nested Throwable.
- Parameters:
msg - Detail message.nested - Nested Throwable.
ConfigurationException
public ConfigurationException(java.lang.String msg)
- Construct a ConfigurationException with the specified detail
message.
- Parameters:
msg - Detail message.