SList list = new SList();
try
{
list.popBack();
}
catch ( InvalidOperationException exception )
{
System.out.println( "Caught " + exception );
}
list.add( "ape" );
list.add( "bat" );
list.add( "cat" );
try
{
list.at( 5 );
}
catch ( IndexOutOfBoundsException exception )
{
System.out.println( "Caught " + exception );
}