public class Main {
public static void main(String[ ] args) {
try {
int firstNumber = 5;
int secondNumber = 0;
int quotient = firstNumber / secondNumber;
System.out.println(quotient); // error!
}
catch (Exception e){
System.out.println("We can't divide a number by 0!");
}
finally {
System.out.println("Our 'try catch' example is finished.");
}
}
}
/* Output:
We can't divide a number by 0!
Our 'try catch' example is finished.
*/