Back to project page Android-Media-Library.
The source code is released under:
Apache License
If you think the Android project Android-Media-Library 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 . jav a 2 s . c o m*/ 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; } }