Back to project page restcomm-android-sdk.
The source code is released under:
GNU General Public License
If you think the Android project restcomm-android-sdk 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 org.mobicents.restcomm.android.sdk; // w ww .j a v a 2 s . c om public class NotInitializedException extends Exception{ /** * */ private static final long serialVersionUID = 8276497401862424419L; public NotInitializedException(String message) { super(message); } public NotInitializedException(String message, Throwable throwable) { super(message, throwable); } }