home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1998 October
/
PCWorld_1998-10_cd.bin
/
software
/
prehled
/
inprise
/
JSAMPLES.Z
/
Container8.java
< prev
next >
Wrap
Text File
|
1998-05-08
|
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 );
}
}
}