These are some fairly common "unchecked exceptions"
- ArrayIndexOutOfBoundsException
- NumberFormatException
Client compiles but when these 'exceptions occur' at runtime
they 'propagate' to the operating system KA-BOOM!!!
Here are more... fairly common "unchecked exceptions"
- NullPointerException
- InputMismatchException
- IllegalFormatConversionException
Client compiles but when these 'exceptions occur' at runtime
they 'propagate' to the operating system KA-BOOM!!!
What's the ANSWER?
How can a programmer 'handle these exceptions'?
Terminology / Vocabulary
- exception
- propagation
- throw / throws / thrown
- catch
- handler