Forums Register Login

throw new Exception() confusion

+Pie Number of slices to send: Send
From the below example, i thought when we encounter the line 'throw new Exception();', it would actually go back to the calling method (main in this case). But why it is getting into catch block?
Then under what circutances would this throw new Exception() will goto the calling method?
Please help. Thanks in advance
+Pie Number of slices to send: Send
Sorry i missed telling you the output. It would be 13423
+Pie Number of slices to send: Send
Hi Sekhar,


what circutances would this throw new Exception() will goto the calling method?


If you remove the try,catch and finally blocks and declare the exception(throws Exception)in your method declaration:

it will be propogated to the calling method.
Since you are handling it it will not be propagated.
Sindhur.
+Pie Number of slices to send: Send
Right - when an exception is thrown, it will be caught by the nearest matching catch block. If the exception is thrown within a try block that has a matching catch block and/or finally block, the exception is handled there.
If the exception is thrown within a try block without a matching catch or finally block (or it's a RuntimeException), the exception will be propogated to the method that invoked this one. It will then be handled there or, if that method doesn't handle the exception, it will propogate to the method that invoked that one, and so on.
Of course, if you're not going to handle a given exception within a method that might throw one, you must declare that the method in question is capable of throwing such an exception (by adding "throws Exception" to the end of the method signature). Once you've done that, any methods that invoke this one will be required to handle that exception (or throw it).
+Pie Number of slices to send: Send
Thanks guys! I learned one more thing!! Just 5 more days!!! i can't wait to complete the exam!!!
It's weird that we cook bacon and bake cookies. Eat this tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com


reply
reply
This thread has been viewed 757 times.
Similar Threads
somebody pls explain why this code does not give an exception
"Handle or Declare" Rule for Checked Exceptions
Doubt in Exception Handling.
What's wrong with this code????
Chained exception
More...

All times above are in ranch (not your local) time.
The current ranch time is
Apr 16, 2024 06:34:42.