io.joshworks.stream.client.StreamConnectionError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stream-client Show documentation
Show all versions of stream-client Show documentation
Resilient client for Server sent events and WebSockets
package io.joshworks.stream.client;
/**
* Created by Josh Gontijo on 6/9/17.
*/
public class StreamConnectionError extends RuntimeException {
public StreamConnectionError(String message, Throwable cause) {
super(message, cause);
}
public StreamConnectionError(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy