io.quarkus.cache.runtime.caffeine.CaffeineComputationThrowable 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.runtime.caffeine;
/**
* This class is used to prevent Caffeine from logging unwanted warnings.
*/
public class CaffeineComputationThrowable {
private Throwable cause;
public CaffeineComputationThrowable(Throwable cause) {
this.cause = cause;
}
public Throwable getCause() {
return cause;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy