L5.2: Try Catch Example #4

PHOTO EMBED

Fri Oct 20 2023 13:25:31 GMT+0000 (Coordinated Universal Time)

Saved by @testpro #java

public class Main {
    public static void main(String[ ] args) {

        int age = 19;

        if (age < 21) {
            throw new ArithmeticException("Sorry - We only sell to customers 21 years old and above!");
        }
        else {
            System.out.println("Order accepted!");
        }
    }
}
// Output: Exception in thread "main" java.lang.ArithmeticException: Sorry - We only sell to customers 21 years old and above!
//	at org.example.Main.main(Main.java:12)
content_copyCOPY