Try Catch
Lesson 25Author : 🦒
Last Updated : October, 2017
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");