All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.cache.CacheException Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
/**
 *  Copyright (c) 2011-2013 Terracotta, Inc.
 *  Copyright (c) 2011-2013 Oracle and/or its affiliates.
 *
 *  All rights reserved. Use is subject to license terms.
 */

package javax.cache;


/**
 * Thrown to indicate an exception has occurred in the Cache.
 * 

* This is the base class for all cache exceptions. * * @author Greg Luck * @since 1.0 */ public class CacheException extends RuntimeException { private static final long serialVersionUID = 1L; /** * Constructs a new CacheException. * * @since 1.0 */ public CacheException() { super(); } /** * Constructs a new CacheException with a message string. * * @param message the detail message. The detail message is saved for * later retrieval by the {@link #getMessage()} method. * @since 1.0 */ public CacheException(String message) { super(message); } /** * Constructs a CacheException with a message string, and * a base exception * * @param message the detail message. The detail message is saved for * later retrieval by the {@link #getMessage()} method. * @param cause the cause (which is saved for later retrieval by the * {@link #getCause()} method). (A null value is * permitted, and indicates that the cause is nonexistent or * unknown.) * @since 1.0 */ public CacheException(String message, Throwable cause) { super(message, cause); } /** * Constructs a new CacheException with the specified cause and a * detail message of (cause==null ? null : cause.toString()) * (which typically contains the class and detail message of * cause). This constructor is useful for runtime exceptions * that are little more than wrappers for other throwables. * * @param cause the cause (which is saved for later retrieval by the * {@link #getCause()} method). (A null value is * permitted, and indicates that the cause is nonexistent or * unknown.) * @since 1.0 */ public CacheException(Throwable cause) { super(cause); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy