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