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.
/** * /* ww w . ja va2s.c om*/ */ package ibt.ortc.api; /** * @author ORTC team members (ortc@ibt.pt) * */ public class OrtcAuthenticationNotAuthorizedException extends Exception { /** * */ private static final long serialVersionUID = -1160269792080151054L; public OrtcAuthenticationNotAuthorizedException(String message) { super(message); } }