Working with exceptions in Java has become among developers a common task. Most of the time, however, the concept of exceptions is misunderstood.
An exception-condition prevents the continuation of a method or the scope that your are in. In some instances you will have sufficient information in the current context to fix the problem. In most of the instances, however, you will not have enough information and you have to hand the problem out to a higher context where someone is qualified to maker the proper decision.


