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 ortc client abstract class * @author ORTC team members (ortc@ibt.pt) *///from w w w . j ava2 s .c om package ibt.ortc.extensibility.exception; public class OrtcNotSubscribedException extends Exception { /** * */ private static final long serialVersionUID = -8279573967778696464L; public OrtcNotSubscribedException(String channel){ super(String.format("Not subscribed to channel %s.", channel)); } }