Try Catch
Lesson 25Author : GOUP
Last Updated : September, 2020
Code
try{
int division = 10/0;
}catch(ArithmeticException e){
System.out.println(e);
}catch(Exception e){
// Not best practice to use general Exception
}
// throws exception
throw new ArithmeticException("can't add numbers");