home *** CD-ROM | disk | FTP | other *** search
Java Source | 1996-07-14 | 369 b | 20 lines |
- // Copyright(c) 1996 ObjectSpace, Inc.
- import 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 );
- }
- }
- }
-
-