Following is my code:
try
{
usrID=client.callString("VerifyUsrnameAndPswd", userName.getText().toString(), password.getText().toString());
}
catch (JSONRPCException e)
{
Toast.makeText(this, "No internet connection", Toast.LENGTH_LONG).show();
Log.e("error", "client.callString exception: "+e.toString());
e.printStackTrace();
// If this condition is true, then no need to go ahead
}
// some steps of remaining code
I do not want to execute the steps after the catch block, when there is no internet connection. But I don't even want to exit the application. Hence cannot use final().
Please suggest me some function to stop the further execution without exiting the application.
You shoud use continue or break or return in catch block depending where that code is.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With