org.jasig.portal.concurrency
Class CachingException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.jasig.portal.PortalException
                  extended by org.jasig.portal.concurrency.CachingException
All Implemented Interfaces:
Serializable

public class CachingException
extends PortalException

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.

Version:
$Revision: 19776 $ $Date: 2010-01-14 16:17:21 -0600 (Thu, 14 Jan 2010) $
Author:
Dan Ellentuck
See Also:
Serialized Form

Constructor Summary
CachingException(String msg)
          Instantiate a CachingException with the given message.
CachingException(String msg, Throwable cause)
          Instantiate a CachingException with the given message and underlying cause.
CachingException(Throwable cause)
          Instantiate a CachingException with the given cause.
 
Method Summary
 
Methods inherited from class org.jasig.portal.PortalException
getErrorID, getParameter, getTimestamp, isLogPending, isRefreshable, isReinstantiable, setErrorID, setLogPending, setParameter, setRefreshable, setReinstantiable
 
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
 

Constructor Detail

CachingException

public CachingException(Throwable cause)
Instantiate a CachingException with the given cause.

Parameters:
cause - A throwable that caused the caching problem.

CachingException

public CachingException(String msg)
Instantiate a CachingException with the given message.

Parameters:
msg - message describing nature of caching problem.

CachingException

public CachingException(String msg,
                        Throwable cause)
Instantiate a CachingException with the given message and underlying cause.

Parameters:
msg - message describing nature of caching problem.
cause - underlying cause.


Copyright © 2010 Jasig. All Rights Reserved.