org.infinispan.commons.TimeoutException Maven / Gradle / Ivy
package org.infinispan.commons;
/**
* Thrown when a timeout occurred. used by operations with timeouts, e.g. lock acquisition, or waiting for responses
* from all members.
*
* @author Bela Ban.
* @author [email protected]
* @since 4.0
*/
public class TimeoutException extends CacheException {
/**
* The serialVersionUID
*/
private static final long serialVersionUID = -8096787619908687038L;
public TimeoutException() {
super();
}
public TimeoutException(String msg) {
super(msg);
}
public TimeoutException(String msg, Throwable cause) {
super(msg, cause);
}
@Override
public String toString() {
return super.toString();
}
}