home *** CD-ROM | disk | FTP | other *** search
/ BUG 15 / BUGCD1998_06.ISO / aplic / jbuilder / jsamples.z / Container8.java < prev    next >
Text File  |  1997-07-30  |  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.