home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / kaffe-0.5p4-src.tgz / tar.out / contrib / kaffe / test / exceptions / IndexTest.java < prev    next >
Text File  |  1996-09-28  |  276b  |  17 lines

  1. class IndexTest {
  2.     public static void main (String args[]) {
  3.         try {
  4.             int array[] = new int[5];
  5.             for (int i = 0; i < 10; i++) {
  6.                 System.out.println(i);
  7.                 array[i] = 1;
  8.             }
  9.         }
  10.         catch (Exception c) {
  11.             System.out.println("Catch");
  12.             c.printStackTrace();
  13.         }
  14.     }
  15. }
  16.  
  17.