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