
com.thimbleware.jmemcached.protocol.exceptions.UnknownCommandException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmemcached-core Show documentation
Show all versions of jmemcached-core Show documentation
Core implementation of the cache daemon
The newest version!
package com.thimbleware.jmemcached.protocol.exceptions;
/**
*/
public class UnknownCommandException extends ClientException {
public UnknownCommandException() {
}
public UnknownCommandException(String s) {
super(s);
}
public UnknownCommandException(String s, Throwable throwable) {
super(s, throwable);
}
public UnknownCommandException(Throwable throwable) {
super(throwable);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy