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

io.quarkus.cache.CacheException Maven / Gradle / Ivy

There is a newer version: 3.17.5
Show newest version
package io.quarkus.cache;

/**
 * This exception is thrown when a cache value computation fails because of an exception. The cause of the failure can be
 * retrieved using the {@link Throwable#getCause()} method.
 */
public class CacheException extends RuntimeException {

    private static final long serialVersionUID = -3861791759030139393L;

    public CacheException(Throwable cause) {
        super(cause);
    }

    public CacheException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy