Re: [android-developers] A thread has a RuntimeException in run() method
On Fri, Jul 13, 2012 at 2:21 PM, michael s wrote: > If the method doSomething(), throws a Runtime Exception and I don't catch > it in my run() method, will that crashes my whole application? Try it.
[android-developers] A thread has a RuntimeException in run() method
In my android, if I create a thread new Runnable() { public void run() { doSomething(); } } If the method doSomething(), throws a Runtime Exception and I don't catch it in my run() method, will that crashes my whole application? Thank you. -- You received this message because