org.huihoo.jfox.ejb.exception
Class PropertyException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--java.lang.RuntimeException
|
+--org.huihoo.jfox.ejb.exception.NestedRuntimeException
|
+--org.huihoo.jfox.ejb.exception.PropertyException
- All Implemented Interfaces:
- NestedThrowable, java.io.Serializable
- public class PropertyException
- extends NestedRuntimeException
- Version:
- $0.9.0$
- Author:
- tai_1219@sina.com
- See Also:
- Serialized Form
|
Constructor Summary |
PropertyException()
Construct a PropertyException with no detail. |
PropertyException(java.lang.String msg)
Construct a PropertyException with the specified detail
message. |
PropertyException(java.lang.String msg,
java.lang.Throwable nested)
Construct a PropertyException with the specified detail
message and nested Throwable. |
PropertyException(java.lang.Throwable nested)
Construct a PropertyException 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 |
PropertyException
public PropertyException()
- Construct a PropertyException with no detail.
PropertyException
public PropertyException(java.lang.Throwable nested)
- Construct a PropertyException with the specified
nested Throwable.
- Parameters:
nested - Nested Throwable.
PropertyException
public PropertyException(java.lang.String msg,
java.lang.Throwable nested)
- Construct a PropertyException with the specified detail
message and nested Throwable.
- Parameters:
msg - Detail message.nested - Nested Throwable.
PropertyException
public PropertyException(java.lang.String msg)
- Construct a PropertyException with the specified detail
message.
- Parameters:
msg - Detail message.