I have used XMLRPC library for android
in my Android Project that uses Magento's API.
I am getting an error when I send a request to the Magento Store through using Magneto API.
That Error contains "ERROR CODE
" with it.
The Error is like :
this code
||
\/
org.xmlrpc.android.XMLRPCFault: XMLRPC Fault: [code 101]
at org.xmlrpc.android.XMLRPCClient.callEx(XMLRPCClient.java:308)
at org.xmlrpc.android.XMLRPCMethod.run(XMLRPCMethod.java:33)
.
.
.
Does anyone know,how to get this Error Code from the Exception just like how we fetch the Error message like as below:
try
{
......
......
}
catch(Exception e)
{
Log.i("Error",e.getMessage());
}