All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.keen.client.java.exceptions.KeenQueryClientException Maven / Gradle / Ivy

There is a newer version: 6.0.0
Show newest version
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