| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException org.jasig.portal.PortalException org.jasig.portal.concurrency.CachingException
CachingException | public class CachingException extends org.jasig.portal.PortalException (Code) | | A CachingException describes a problem that has arisen during
an attempt to add, update, remove or reference a cache entry. If the problem
arises in the store, the CachingException should wrap an
Exception specific to the store, like a java.sql.SQLException .
author: Dan Ellentuck version: $Revision: 35418 $ $Date: 2005-03-07 13:09:07 -0700 (Mon, 07 Mar 2005) $ |
CachingException | public CachingException()(Code) | | Instantiate a bare CachingException.
Deprecated because it would be so much more helpful if you were to
instead use a contructor with a message.
|
CachingException | public CachingException(Throwable cause)(Code) | | Instantiate a CachingException with the given cause.
Parameters: cause - A throwable that caused the caching problem. |
CachingException | public CachingException(String msg)(Code) | | Instantiate a CachingException with the given message.
Parameters: msg - message describing nature of caching problem. |
CachingException | public CachingException(String msg, Throwable cause)(Code) | | Instantiate a CachingException with the given message and underlying cause.
Parameters: msg - message describing nature of caching problem. Parameters: cause - underlying cause. |
getExceptionCode | public int getExceptionCode()(Code) | | This method always returns zero. Presumably it is here because at one time
PortalExceptions were to be identified by integer codes. In any case, this
method does not correspond to any interface and is deprecated for future
removal.
0 |
|
|
|