Package javax.cache
Class CachingShutdownException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- javax.cache.CacheException
-
- javax.cache.CachingShutdownException
-
- All Implemented Interfaces:
Serializable
public class CachingShutdownException extends CacheException
Thrown to indicate an exception has occurred in an aggregate Caching shutdown procedure.- Since:
- 1.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CachingShutdownException(Map<CacheManager,Exception> failures)Constructs a new CachingShutdownException with the specified list of shutdown failures.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<CacheManager,Exception>getFailures()Return the set of CacheManagers that failed during shutdown and the associated thrown exceptions.StringtoString()Returns a short description of this throwable.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
-
-
-
Constructor Detail
-
CachingShutdownException
public CachingShutdownException(Map<CacheManager,Exception> failures)
Constructs a new CachingShutdownException with the specified list of shutdown failures.- Parameters:
failures- a map containing the thrown exceptions
-
-
Method Detail
-
getFailures
public Map<CacheManager,Exception> getFailures()
Return the set of CacheManagers that failed during shutdown and the associated thrown exceptions.- Returns:
- the set of thrown exceptions
-
toString
public String toString()
Returns a short description of this throwable. The result is the concatenation of:- the name of the class of this object
- ": " (a colon and a space)
- the result of invoking this object's
Throwable.getLocalizedMessage()method
-
-