Back to project page Todoist-for-Android.
The source code is released under:
GNU General Public License
If you think the Android project Todoist-for-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.
package org.xmlrpc.android; /*from w ww . j a v a 2 s . co m*/ public class XMLRPCException extends Exception { /** * */ private static final long serialVersionUID = 7499675036625522379L; public XMLRPCException(Exception e) { super(e); } public XMLRPCException(String string) { super(string); } }