On Thu, Nov 24, 2011 at 11:49 PM, Kristopher Micinski < [email protected]> wrote:
> > >> >> I'm just here to confirm what the other two coders told you ~ I found > >> >> it on first read place a catch( Throwable ) around the call > >> >> to .print_result(MyService. > >> > > >> > That's actually pretty bad advice. Don't place a 'catch (Throwable > >> > ...)' > >> > around anything. > >> > > >> > >> Ever? > > > > That is a good question. > > I suggest asking it each time the situation comes up. > > There are 'correct' uses of try / catch blocks, and exceptions in the Java > language. You might be able to get away with avoiding using them in your > own code, but the standard library throws things, so you can't completely > avoid ignoring them. > *Avoid them. kris -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

