Back to project page StreamHub-Android-Reviews-App.
The source code is released under:
MIT License
If you think the Android project StreamHub-Android-Reviews-App 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 livefyre; //from w w w . j av a 2s . co m public class DeviceNotConnectedException extends RuntimeException { private static final long serialVersionUID = -743862426460328113L; public DeviceNotConnectedException() { super("Device Not Connected Exception"); } public DeviceNotConnectedException(Throwable throwable) { super(throwable); } public DeviceNotConnectedException(String msg) { super(msg); } public DeviceNotConnectedException(String msg, Throwable throwable) { super(msg, throwable); } }