Answers for "What is a user-defined exception in java?"

1

java user defined exception example

class InvalidAgeException extends Exception{  
 InvalidAgeException(String s){  
  super(s);  
 }  
}  
class TestCustomException1{  
  
   static void validate(int age)throws InvalidAgeException{  
     if(age<18)  
      throw new InvalidAgeException("not valid");  
     else  
      System.out.println("welcome to vote");  
   }  
     
   public static void main(String args[]){  
      try{  
      validate(13);  
      }catch(Exception m){System.out.println("Exception occured: "+m);}  
  
      System.out.println("rest of the code...");  
  }  
} 

Output:Exception occured: InvalidAgeException:not valid
       rest of the code...
Posted by: Guest on April-21-2021

Code answers related to "What is a user-defined exception in java?"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language