com.quotemedia.streamer.client.StreamException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of streamerclient-java-core Show documentation
Show all versions of streamerclient-java-core Show documentation
Java streaming client that provides easy-to-use client APIs to connect and subscribe to QuoteMedia's market data streaming services. https://quotemedia.com/
The newest version!
package com.quotemedia.streamer.client;
/**
* Exception thrown by streaming service client api.
*/
public final class StreamException extends Exception {
/**
* Constructor
*
* @param msg the detailed message
*/
public StreamException(final String msg) {
super(msg);
}
/**
* Constructor
*
* @param cause the cause
*/
public StreamException(final Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy