sofya.base.exceptions
Class CacheException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by sofya.base.exceptions.CacheException
All Implemented Interfaces:
java.io.Serializable

public class CacheException
extends java.lang.RuntimeException

Defines an exception that indicates that something prevented a cache or cache-related operation from being serviced.

Version:
09/08/2004
Author:
Alex Kinneer
See Also:
Serialized Form

Constructor Summary
CacheException()
          Create an instance with no message.
CacheException(java.lang.String s)
          Create an instance with the given message.
CacheException(java.lang.String s, java.lang.Throwable cause)
          Creates an instance with the given message wrapping another exception.
 
Method Summary
 java.lang.Throwable getCause()
          Gets the exception that is the original source of the problem (may be null).
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, 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

CacheException

public CacheException()
Create an instance with no message.


CacheException

public CacheException(java.lang.String s)
Create an instance with the given message.


CacheException

public CacheException(java.lang.String s,
                      java.lang.Throwable cause)
Creates an instance with the given message wrapping another exception.

Method Detail

getCause

public java.lang.Throwable getCause()
Gets the exception that is the original source of the problem (may be null).

Overrides:
getCause in class java.lang.Throwable