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