Back to project page RS-Text-Forwarder-Android-Client.
The source code is released under:
GNU General Public License
If you think the Android project RS-Text-Forwarder-Android-Client 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 net.rolisoft.textforwarder; //from ww w. ja v a 2s .c om import org.json.JSONObject; public class ServerError extends Exception { public JSONObject response; public ServerError() { super(); } public ServerError(String message) { super(message); } public ServerError(String message, Throwable cause) { super(message, cause); } public ServerError(Throwable cause) { super(cause); } public ServerError(String message, JSONObject response) { super(message); this.response = response; } }