com.googlecode.xmemcached.spring.boot.XMemcachedOperationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xmemcached-spring-boot-starter Show documentation
Show all versions of xmemcached-spring-boot-starter Show documentation
Spring Boot Starter For Xmemcached
package com.googlecode.xmemcached.spring.boot;
/**
* @author wandl
*/
@SuppressWarnings("serial")
public class XMemcachedOperationException extends RuntimeException {
public XMemcachedOperationException(String msg, Throwable cause) {
super(msg, cause);
}
public XMemcachedOperationException(String msg) {
super(msg);
}
}