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

net.rubyeye.xmemcached.exception.MemcachedDecodeException Maven / Gradle / Ivy

package net.rubyeye.xmemcached.exception;

/**
 * Memcached decode exception
 * @author dennis
 * 
 */
public class MemcachedDecodeException extends RuntimeException {

	public MemcachedDecodeException() {
		super();
	}

	public MemcachedDecodeException(String s) {
		super(s);
	}

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

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

	private static final long serialVersionUID = 939539859359568164L;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy