A handler could add a listener to the same event in it's callback.
ie: a DeployableContainer adding a SessionLifecyle handler to be added to the @BeforeClass
*/
for(int i = 0; i < handlers.size(); i++)
{
EventHandler handler = handlers.get(i);
handler.callback(context, event);
}
}
catch (Exception e)
{
throw new FiredEventException(context, event, e);