L5.2: Try Catch Exceptions Example #2

PHOTO EMBED

Tue Oct 17 2023 08:48:00 GMT+0000 (Coordinated Universal Time)

Saved by @testpro #java

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!");
        }
    }
}
// Output: We can't divide a number by 0!
content_copyCOPY