Back to project page base_app.
The source code is released under:
GNU General Public License
If you think the Android project base_app 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 com.bengui.baseapp.services; // www. j a v a 2 s. com import org.json.JSONException; public class ServiceException extends JSONException{ /** * */ private static final long serialVersionUID = 1L; private String name; private String message; //private ArrayList<String>; public ServiceException() { super(""); } public ServiceException(String name, String message) { super(name); this.message = message; this.name = name; } public ServiceException(String name, String message, Throwable cause) { super(name); this.message = message; this.name = name; } //public ServiceError(Throwable cause) { super(cause); } public String getName(){ return name; } public String getMessage(){ return message; } }