ExceptionConfig exceptionConfig = moduleConfig.findExceptionConfig(Exception.class.getName());
assertNotNull(exceptionConfig);
assertEquals(Exception.class.getName(), exceptionConfig.getType());
ExceptionConfig[] exceptionConfigs = moduleConfig.findExceptionConfigs();
assertNotNull(exceptionConfigs);
assertEquals(1, exceptionConfigs.length);
ForwardConfig fwdConfig = moduleConfig.findForwardConfig("globalResult");
assertNotNull(fwdConfig);