Back to project page pandoroid.
The source code is released under:
GNU General Public License
If you think the Android project pandoroid 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 w w . j a v a2s . c om public class XMLRPCFault extends XMLRPCException { /** * */ private static final long serialVersionUID = 5676562456612956519L; private String faultString; private int faultCode; public XMLRPCFault(String faultString, int faultCode) { super("XMLRPC Fault: " + faultString + " [code " + faultCode + "]"); this.faultString = faultString; this.faultCode = faultCode; } public String getFaultString() { return faultString; } public int getFaultCode() { return faultCode; } }