io.keen.client.java.exceptions.InvalidEventCollectionException 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;
/**
* InvalidEventCollectionException
*
* @author dkador
* @since 1.0.0
*/
public class InvalidEventCollectionException extends KeenException {
private static final long serialVersionUID = 4340205614523528793L;
public InvalidEventCollectionException() {
super();
}
public InvalidEventCollectionException(Throwable cause) {
super(cause);
}
public InvalidEventCollectionException(String message) {
super(message);
}
public InvalidEventCollectionException(String message, Throwable cause) {
super(message, cause);
}
}