All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gr.iti.mklab.sfc.streams.StreamException Maven / Gradle / Ivy

Go to download

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