/* Author: James Tam Date: October 16, 2003 A program to illustrate how the try-catch-finally block works. */ public class Driver { public static void main (String [] args) { TCFExample eg = new TCFExample (); eg.method(); } }