1: /**
2: @author Frank M. Carrano
3: @author Timothy M. Henry
4: @version 4.0
5: */
6: public class Driver
7: {
8: public static void main(String[] args)
9: {
10: SuperClass superObject = new SubClass();
11: try
12: {
13: superObject.someMethod();
14: }
15: catch (Exception1 e)
16: {
17: System.out.println(e.getMessage());
18: }
19: } // end main
20: } // end JoeMathDriver