io.keen.client.java.exceptions.KeenQueryClientException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of keen-client-api-query Show documentation
Show all versions of keen-client-api-query Show documentation
Java Query Client API for Keen IO
package io.keen.client.java.exceptions;
/**
* Exceptions thrown by KeenQueryClient. This includes errors reported by the server.
*
* Created by claireyoung on 5/27/15.
*/
public class KeenQueryClientException extends KeenException {
private static final long serialVersionUID = -8714276738565293346L;
public KeenQueryClientException() {
super();
}
public KeenQueryClientException(Throwable cause) {
super(cause);
}
public KeenQueryClientException(String message) {
super(message);
}
public KeenQueryClientException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy