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

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

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

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

    public InvalidEventException() {
        super();
    }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy