io.keen.client.java.exceptions.ServerException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of keen-client-java-core Show documentation
Show all versions of keen-client-java-core Show documentation
Java Client Core Library for Keen
package io.keen.client.java.exceptions;
/**
* ServerException
*
* @author Kevin Litwack ([email protected])
* @since 2.0.0
*/
public class ServerException extends KeenException {
private static final long serialVersionUID = 3913819084183357142L;
public ServerException() {
super();
}
public ServerException(Throwable cause) {
super(cause);
}
public ServerException(String message) {
super(message);
}
public ServerException(String message, Throwable cause) {
super(message, cause);
}
}