What rules applies to the following code:

    try {
        assert (false) : "jane";
    } catch (Exception e2) {
        System.out.print("ae2 ");
    } finally {
        throw new IllegalArgumentException();
    }

Assetions are enabled.

Why IllegalArgumentException is reported instead of AssertionError? Are there any rules which applies in this situations?

Edit: Sorry! in this example there should be assert (false)

link|improve this question

78% accept rate
feedback

4 Answers

up vote 1 down vote accepted

An uncaught exception in a finally block (or in a catch block) causes any exception from the try block to be discarded. See the Java Language Specification ยง 14.20 for details. As of Java 7, an enclosing try/catch block can recover discarded exceptions (as described here).

link|improve this answer
feedback

finally block always runs. The assert evaluates to true, so the finally block throws the exception.

Also, assertions are disabled by default anyway, which might be the reason why the assertion never got evaluated.

p.s

If the assert evaluates to false, finally will run anyway and throw the Exception, instead the AssertionError.

Remember finally block always runs, except when the JVM halts in the try block.

link|improve this answer
assert doesn't return anything. – Peter Lawrey Nov 23 '11 at 17:54
Ok, to be precise i would say evaluates. – Mechkov Nov 23 '11 at 17:55
sorry, i've corrected my question, assert evaluates to false – mich Nov 23 '11 at 17:57
feedback

The only line which does anything is

throw new IllegalArgumentException();

whereas

assert true

doesn't do anything and even if it did it wouldn't be caught by catch(Exception

link|improve this answer
sorry, i've corrected my question, assert evaluates to false – mich Nov 23 '11 at 17:58
In that case, the answer is that finally is always executed last and replaces any previous action except System.exit(); – Peter Lawrey Nov 23 '11 at 20:08
feedback

The finally block will always be executed. The only situation in which it won't be executed is a JVM shutdown (i.e. System.exit(-).)

What you might find interesting is that even if you'd have:

try { 
    return ...; 
} 
finally { 
    ...
}

the finally block will still be executed, and it will be executed before the method exits.

link|improve this answer
Thanks for your answer. First time I've encountered somebody from PUT at Stackoverflow ;) – mich Nov 23 '11 at 18:27
Hah, nice to find university mate here ;-) Good luck with your SCJP. – Piotr Nowicki Nov 23 '11 at 18:34
1  
Thanks, I've passed today exam with score 95% ;) – mich Nov 24 '11 at 11:52
Congratulations then! :-)) – Piotr Nowicki Nov 24 '11 at 12:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.