What is an Exception?
Indication of a problem that occurs during rpgram execution
Example of Checked Exceptions
IOException
Examples of Unchecked Exceptions
Basic Exception Code
try {
//code you test on
}
catch(NumberFormatExcepion e) { //you can print the exception }
catch(ArithmeticException e) {…}