com.opensymphony.module.propertyset
Class PropertyImplementationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.opensymphony.module.propertyset.PropertyException
com.opensymphony.module.propertyset.PropertyImplementationException
- All Implemented Interfaces:
- java.io.Serializable
- public class PropertyImplementationException
- extends PropertyException
Thrown if a specific implementation exception is thrown
(such as EJBException, RemoteException, NamingException, IOException, etc).
A specific Exception can be wrapped in this Exception, by being
passed to the constructor. It can be retrieved via
getRootCause() .
- Version:
- $Revision: 1.3 $
- Author:
- Joe Walnes
- See Also:
- Serialized Form
|
Field Summary |
protected java.lang.Throwable |
original
|
|
Method Summary |
java.lang.Throwable |
getRootCause()
Retrieve original Exception. |
| 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 |
original
protected java.lang.Throwable original
PropertyImplementationException
public PropertyImplementationException()
PropertyImplementationException
public PropertyImplementationException(java.lang.String msg)
PropertyImplementationException
public PropertyImplementationException(java.lang.String msg,
java.lang.Throwable original)
PropertyImplementationException
public PropertyImplementationException(java.lang.Throwable original)
getRootCause
public java.lang.Throwable getRootCause()
- Retrieve original Exception.
|