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

io.quarkus.cache.runtime.caffeine.CaffeineComputationThrowable Maven / Gradle / Ivy

There is a newer version: 3.17.5
Show newest version
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