Uncaught Exceptions
If an exception is not handled, then the program terminates, producing a message indicating what the exception was
Example: divide by 0 error in the following
public static void main(String[] args) {
int numer = 10; int denom = 0;
System.out.println(numer / denom);