// $Id$

import java.io.*;
/**
 * @author Gary T. Leavens
 */
public class TypePatternTestMain {
   public static void main(String [] args) {
       try {
           new TypePatternTestMain().thtest();
       } catch (IOException e) {
           System.out.println("got it");
       }
   }
   
   public void thtest() throws IOException, FileNotFoundException {
       throw new IOException();
   }
}
