This article has been recently pointed out at java.net:
http://www.onjava.com/pub/a/onjava/2003/11/19/exceptions.html
The key point is:
---
1. When deciding on checked exceptions vs. unchecked exceptions, ask yourself, "What action can the client code take when the exception occurs?"
If the client can take some alternate action to recover from the exception, make it a checked exception. If the client cannot do anything useful, then make the exception unchecked. By useful, I mean taking steps to recover from the exception and not just logging the exception.
---
I agree with this vision, that is the same abies has.




