home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / inprise / JSAMPLES.Z / Container8.java < prev    next >
Text File  |  1998-05-08  |  389b  |  19 lines

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3.  
  4. public class Container8
  5.   {
  6.   public static void main( String[] args )
  7.     {
  8.     Array array = new Array();
  9.     try
  10.       {
  11.       Object object = array.front();
  12.       }
  13.     catch ( InvalidOperationException exception )
  14.       {
  15.       System.out.println( "Caught " + exception );
  16.       }
  17.     }
  18.   }
  19.