Print

Print


Hi Bob,
 
You can cause JAS to continue after an exception, by overriding the process() method of your main Driver routine as follows:
 
public void process(LCDEvent event)
{
    try
    {
        super.process(event);
    }
    catch (hep.lcd.util.error.LCDException x)
    {
        out.println("Event "+event+" aborted due to "+x);
    }   
}