Package org.wso2.carbon.mediator.cache
Class CachingException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.wso2.carbon.mediator.cache.CachingException
-
- All Implemented Interfaces:
Serializable
public class CachingException extends RuntimeException
This is the CachingException which is a checked exception and will be thrown in case of an error in the caching execution- See Also:
Exception
, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CachingException()
Default constructor of the CachingExceptionCachingException(String message)
This constructor of the CachingException sets the given String message to the ExceptionCachingException(String message, Throwable cause)
This constructor of the CachingException sets the given String message, and the cause to the ExceptionCachingException(Throwable cause)
This constructor of the CachingException sets the given cause to the Exception
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
CachingException
public CachingException()
Default constructor of the CachingException
-
CachingException
public CachingException(String message)
This constructor of the CachingException sets the given String message to the Exception- Parameters:
message
- - String specifying the exception message
-
CachingException
public CachingException(String message, Throwable cause)
This constructor of the CachingException sets the given String message, and the cause to the Exception- Parameters:
message
- - String specifying the exception messagecause
- - Throwable cause of the exception
-
CachingException
public CachingException(Throwable cause)
This constructor of the CachingException sets the given cause to the Exception- Parameters:
cause
- - Throwable cause of the exception
-
-