Back to project page StreamingService.
The source code is released under:
Apache License
If you think the Android project StreamingService listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.commandocoder.streaming; /*from ww w. j a va2 s. co m*/ /** * Exception for streaming error events * (c) Commando Coder Ltd. 2014 * @author Tero Katajainen */ public class StreamingException extends Exception { public StreamingException(String string) { super(string); } public StreamingException(Throwable t) { super(t); } }