Removed IOException error control in SOAP calls

This commit is contained in:
Juan Miguel Boyero Corral 2013-06-25 23:25:58 +02:00
parent dbb914d785
commit 268f3653ba

View File

@ -611,11 +611,11 @@ public abstract class Module extends MenuActivity {
}
} else if (e instanceof XmlPullParserException) {
errorMsg = getString(R.string.errorServerResponseMsg);
} else if (e instanceof IOException) {
errorMsg = getString(R.string.errorConnectionMsg);
} else if (e instanceof TimeoutException) {
errorMsg = getString(R.string.errorTimeoutMsg);
sendException = false;
//} else if (e instanceof IOException) {
// errorMsg = getString(R.string.errorConnectionMsg);
} else {
errorMsg = e.getMessage();
}