Code /* TestException0.java CIS 260 Dave Klick 2016-02-03 Demonstration of unchecked exceptions. Unchecked exceptions don't have to be declared or caught to compile program. */ public class TestException0 { public static void main(String[] args) { System.out.println(divide(6, 4)); System.out.println(divide(6, 0)); } private static int divide(final int n1, final int n2) { return n1 / n2; } }