Back to project page One-Button-App---Android.
The source code is released under:
Copyright (c) 2002,2003, Stefan Haustein, Oberhausen, Rhld., Germany Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (...
If you think the Android project One-Button-App---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 www. j a v a 2 s . com*/ 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; } }