com.flowthings.client.exception.AsyncException 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;
/**
* Created by matt on 7/5/16.
*/
public class AsyncException extends FlowthingsException {
public AsyncException() {
}
public AsyncException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
public AsyncException(String message, Throwable cause) {
super(message, cause);
}
public AsyncException(String message) {
super(message);
}
public AsyncException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy