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 empty field exception * @author ORTC team members (ortc@ibt.pt) *//* w w w. ja v a2 s.co m*/ package ibt.ortc.extensibility.exception; public class OrtcInvalidCharactersException extends Exception { /** * */ private static final long serialVersionUID = 3358079199485552190L; public OrtcInvalidCharactersException(){ super(); } public OrtcInvalidCharactersException(String field){ super(String.format("%s has invalid characters", field)); } }