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

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

There is a newer version: 6.0.0
Show newest version
package io.keen.client.java.exceptions;

/**
 * KeenException
 *
 * @author dkador
 * @since 1.0.0
 */
public abstract class KeenException extends RuntimeException {
    private static final long serialVersionUID = -2830411036279774949L;

    public KeenException() {
        super();
    }

    public KeenException(Throwable cause) {
        super(cause);
    }

    public KeenException(String message) {
        super(message);
    }

    public KeenException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy