Sunday, 18 December 2022

Exception Handling Write a program to show the arithmetic exception using throws.

 Exception Handling     



public class exception {
    static void checkAge(int age) throws ArithmeticException {
      if (age < 18) {
        throw new ArithmeticException("Access denied - You must be at least 18 years old.");
      } else {
        System.out.println("Access granted - You are old enough!");
      }
   }
   
   public static void main(String[] args) {
     checkAge(15);
   }
 
}




OUTPUT: Exception in thread "main" java.lang.ArithmeticException: Access denied - You must be at least 18 years old.
        

No comments:

Post a Comment

GitHub Most Imp Command For Every Developer Learn:

 Top Command for GitHub:  1) git clone 2) git init and git status   3) git add file name  or git add .  4) git commit -m message  5) git rem...