Exception thrown inside catch block - will it be caught again? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T05:46:07Z http://stackoverflow.com/feeds/question/143622 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/143622/exception-thrown-inside-catch-block-will-it-be-caught-again 2 Exception thrown inside catch block - will it be caught again? Rory Fitzpatrick 2008-09-27T13:10:51Z 2008-09-29T23:45:02Z <p>This may seem like a programming 101 question and I had thought I knew the answer but now find myself needing to double check. In this piece of code below, will the exception thrown in the first catch block then be caught by the general Exception catch block below?</p> <pre><code>try { // Do something } catch(IOException e) { throw new ApplicationException("Problem connecting to server"); } catch(Exception e) { // Will the ApplicationException be caught here? } </code></pre> <p>I always thought the answer would be no, but now I have some odd behaviour that could be caused by this. The answer is probably the same for most languages but I'm working in Java.</p> http://stackoverflow.com/questions/143622/exception-thrown-inside-catch-block-will-it-be-caught-again/143628#143628 20 Answer by Chris Jester-Young for Exception thrown inside catch block - will it be caught again? Chris Jester-Young 2008-09-27T13:13:30Z 2008-09-27T13:13:30Z <p>No, since the new <code>throw</code> is not in the <code>try</code> block directly.</p> http://stackoverflow.com/questions/143622/exception-thrown-inside-catch-block-will-it-be-caught-again/143631#143631 0 Answer by Ian P for Exception thrown inside catch block - will it be caught again? Ian P 2008-09-27T13:15:31Z 2008-09-27T13:15:31Z <p>No -- As Chris Jester-Young said, it will be thrown up to the next try-catch in the hierarchy.</p> http://stackoverflow.com/questions/143622/exception-thrown-inside-catch-block-will-it-be-caught-again/143660#143660 0 Answer by PhiLho for Exception thrown inside catch block - will it be caught again? PhiLho 2008-09-27T13:38:34Z 2008-09-27T13:38:34Z <p>As said above...<br /> I would add that if you have trouble seeing what is going on, if you can't reproduce the issue in the debugger, you can add a trace before re-throwing the new exception (with the good old System.out.println at worse, with a good log system like log4j otherwise).</p> http://stackoverflow.com/questions/143622/exception-thrown-inside-catch-block-will-it-be-caught-again/143671#143671 8 Answer by Tom Hawtin - tackline for Exception thrown inside catch block - will it be caught again? Tom Hawtin - tackline 2008-09-27T13:48:34Z 2008-09-27T13:48:34Z <p>No. It's very easy to check.</p> <pre><code>public class Catch { public static void main(String[] args) { try { throw new java.io.IOException(); } catch (java.io.IOException exc) { System.err.println("In catch IOException: "+exc.getClass()); throw new RuntimeException(); } catch (Exception exc) { System.err.println("In catch Exception: "+exc.getClass()); } finally { System.err.println("In finally"); } } } </code></pre> <p>Should print:</p> <pre> In catch IOException: class java.io.IOException In finally Exception in thread "main" java.lang.RuntimeException at Catch.main(Catch.java:8)</pre> <p>Technically that could have been a compiler bug, implementation dependent, unspeicifed behaviour, or something. However, the JLS is pretty well nailed down and the compilers could enough for these sort of simple things (generics corner case may be a different matter).</p> <p>Alos note, if you swap around the two catch blocks, it wont compile. The second catch would be completely unreachable.</p> <p>Note finally is always called even if a catch is executed. (other than silly cases, such as infinite loops, attaching through the tools interface and killing the thread, rewriting bytecode, etc.).</p> http://stackoverflow.com/questions/143622/exception-thrown-inside-catch-block-will-it-be-caught-again/143674#143674 0 Answer by Vinko Vrsalovic for Exception thrown inside catch block - will it be caught again? Vinko Vrsalovic 2008-09-27T13:53:35Z 2008-09-27T13:53:35Z <p>It won't be caught by the second catch block. Each Exception is caught only when inside a try block. You can nest tries though (not that it's a good idea generally):</p> <pre><code>try { doSomething(); } catch (IOException) { try { doSomething(); } catch (IOException e) { throw new ApplicationException("Failed twice at doSomething" + e.toString()); } } catch (Exception e) { } </code></pre> http://stackoverflow.com/questions/143622/exception-thrown-inside-catch-block-will-it-be-caught-again/144588#144588 0 Answer by Uri for Exception thrown inside catch block - will it be caught again? Uri 2008-09-27T22:05:17Z 2008-09-27T22:05:17Z <p>No, since the catches all refer to the same try block, so throwing from within a catch block would be caught by an enclosing try block (probably in the method that called this one) </p> http://stackoverflow.com/questions/143622/exception-thrown-inside-catch-block-will-it-be-caught-again/144944#144944 0 Answer by Alex Miller for Exception thrown inside catch block - will it be caught again? Alex Miller 2008-09-28T01:28:31Z 2008-09-28T01:28:31Z <p>The Java Language Specification says in section 14.19.1:</p> <blockquote> <p>If execution of the try block completes abruptly because of a throw of a value V, then there is a choice:</p> <ul> <li>If the run-time type of V is assignable to the Parameter of any catch clause of the try statement, then the first (leftmost) such catch clause is selected. The value V is assigned to the parameter of the selected catch clause, and the Block of that catch clause is executed. If that block completes normally, then the try statement completes normally; <strong>if that block completes abruptly for any reason, then the try statement completes abruptly for the same reason.</strong></li> </ul> </blockquote> <p>Reference: <a href="http://java.sun.com/docs/books/jls/second_edition/html/statements.doc.html#24134" rel="nofollow">http://java.sun.com/docs/books/jls/second_edition/html/statements.doc.html#24134</a></p> <p>In other words, the first enclosing catch that can handle the exception does, and if an exception is thrown out of that catch, that's not in the scope of any other catch for the original try, so they will not try to handle it. </p> <p>One related and confusing thing to know is that in a try-[catch]-finally structure, a finally block may throw an exception and if so, any exception thrown by the try or catch block is lost. That can be confusing the first time you see it.</p> http://stackoverflow.com/questions/143622/exception-thrown-inside-catch-block-will-it-be-caught-again/151219#151219 0 Answer by JaredPar for Exception thrown inside catch block - will it be caught again? JaredPar 2008-09-29T23:45:02Z 2008-09-29T23:45:02Z <p>Not being overly critical but this is the type of question that can easily be answered by experimentation. Experimentation is as critical to being a good programmer as asking questions is. </p>