home *** CD-ROM | disk | FTP | other *** search
Java Source | 1997-07-30 | 389 b | 19 lines |
- // Copyright(c) 1996,1997 ObjectSpace, Inc.
- import COM.objectspace.jgl.*;
-
- public class Container8
- {
- public static void main( String[] args )
- {
- Array array = new Array();
- try
- {
- Object object = array.front();
- }
- catch ( InvalidOperationException exception )
- {
- System.out.println( "Caught " + exception );
- }
- }
- }
-