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

com.netflix.evcache.EVCacheException Maven / Gradle / Ivy

There is a newer version: 5.21.0
Show newest version
package com.netflix.evcache;

public class EVCacheException extends Exception {

    private static final long serialVersionUID = -3885811159646046383L;

    public EVCacheException(String message) {
        super(message);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy