com.flowthings.client.exception.FlowthingsException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flowthings-client-core Show documentation
Show all versions of flowthings-client-core Show documentation
A client library for flowthings.io realtime event processing
package com.flowthings.client.exception;
public class FlowthingsException extends Exception {
public FlowthingsException() {
super();
}
public FlowthingsException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
public FlowthingsException(String message, Throwable cause) {
super(message, cause);
}
public FlowthingsException(String message) {
super(message);
}
public FlowthingsException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy