![JAR search and dependency download from the Maven repository](/logo.png)
gr.iti.mklab.sfc.streams.StreamException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mklab-stream-manager Show documentation
Show all versions of mklab-stream-manager Show documentation
Monitors a set of social streams (e.g. Twitter status updates) and collects the incoming content.
The newest version!
package gr.iti.mklab.sfc.streams;
/**
* An exception that can be thrown during stream related operations
*
*/
public class StreamException extends Exception{
private static final long serialVersionUID = 4359142708795406111L;
public StreamException(Exception e) {
super(e);
}
public StreamException(String message){
super(message);
}
public StreamException(String message, Exception e) {
super(message,e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy