Java - Programming Language
This course covers the basics of programming in Java. Work your way through the videos/articles and I'll teach you everything you need to know to start your programming journey!

Try Catch

Lesson 25
Author : 🦒
Last Updated : October, 2017


Code

Copytry{
     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");