home *** CD-ROM | disk | FTP | other *** search
/ BUG 15 / BUGCD1998_06.ISO / aplic / jbuilder / jsamples.z / Container9.java < prev    next >
Text File  |  1997-07-30  |  356b  |  18 lines

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