io.quarkus.cache.CacheException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-cache Show documentation
Show all versions of quarkus-cache Show documentation
Enable application data caching in CDI beans
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