Back to project page RealtimeMessaging-Android.
The source code is released under:
MIT License
If you think the Android project RealtimeMessaging-Android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * @fileoverview This file contains the implementation of the not connected exception * @author ORTC team members (ortc@ibt.pt) */// w ww. ja v a 2 s .com package ibt.ortc.extensibility.exception; public class OrtcNotConnectedException extends Exception { private static final long serialVersionUID = -5717798427917093305L; public OrtcNotConnectedException(){ super("Not connected"); } public OrtcNotConnectedException(String message){ super(message); } }