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

net.spy.memcached.vbucket.ConnectionException Maven / Gradle / Ivy

There is a newer version: 2.8.4
Show newest version
package net.spy.memcached.vbucket;

public class ConnectionException extends RuntimeException {

    private static final long serialVersionUID = -6513198067127603979L;

    public ConnectionException() {
        super();
    }

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy