I'm involved in the new project at my work. My part is network communication layer. And I want to consult with you. I have a class (WebApiController) that can: make requests, get responses, parse them and return models. And now I have to use them in many places and put them in the AsyncTasks.
And the question is: What is the best solution for the exceptions handling? Because methods of the WebApiController throws some exceptions like: ServerBadResponseException, XmlParserException etc. And that's will be occur in the doInBackground() from which we don't have permission to work with the UI. But I want to show some Toast or Dialog with the error message. Of course we can use runOnUiThread() but I want to use onPostExecute().
Thank's for the attention =)
UPD: I know about try/catch block. I'm asking about the best way to catch exceptions and show some dialog/toast about them in the AsyncTask.
I have some ideas how to handle this but I don't shure they are very goodHow about sharing your ideas? – WarrenFaith Feb 24 '12 at 9:16