- protected final HashSet<TestObjectExceptionHandler> checkedInExceptionHandlers = new HashSet<TestObjectExceptionHandler>();
- //this will be invoked when some exception is caught out
- private ITestObjectExceptionHandler exceptionHandler = (ITestObjectExceptionHandler) Proxy.newProxyInstance(
- IExtendedWebDriverEventListener.class.getClassLoader(),
- new Class[] {ITestObjectExceptionHandler.class },
- new InvocationHandler()
- {
- public Object invoke(Object proxy, Method method, Object[] args) throws Throwable
- {
- //it needs to know exception
- Throwable t = (Throwable) args[4];
- for (TestObjectExceptionHandler handler : checkedInExceptionHandlers)
- {
- //it looks for the suitable handler
- if (handler.throwableList.contains(t.getClass()))
- {
- try
- {
- return method.invoke(handler, args);
- }
- catch (Exception e) {
- continue; //it wasn't the suitable handler
- }
- }
- }
- //if there are no suitable handlers
- throw t;
- }
- }
- );