| | |
| | | } |
| | | catch (final Throwable t) |
| | | { |
| | | OnlineUpdateException oupe = new OnlineUpdateException( |
| | | ERR_READING_CONFIG_LDAP.get(t.toString()), t); |
| | | ex.add(oupe); |
| | | ex.add(new OnlineUpdateException(ERR_READING_CONFIG_LDAP.get(t), t)); |
| | | } |
| | | for (OpenDsException oe : ex) |
| | | { |
| | |
| | | catch (Throwable t) |
| | | { |
| | | logger.warn(LocalizableMessage.raw("Error reading monitoring: "+t, t)); |
| | | OnlineUpdateException oupe = new OnlineUpdateException( |
| | | ERR_READING_CONFIG_LDAP.get(t.toString()), t); |
| | | ex.add(oupe); |
| | | ex.add(new OnlineUpdateException(ERR_READING_CONFIG_LDAP.get(t), t)); |
| | | } |
| | | try |
| | | { |
| | |
| | | catch (Throwable t) |
| | | { |
| | | logger.warn(LocalizableMessage.raw("Error reading task information: "+t, t)); |
| | | OnlineUpdateException oupe = new OnlineUpdateException( |
| | | ERR_READING_CONFIG_LDAP.get(t.toString()), t); |
| | | ex.add(oupe); |
| | | ex.add(new OnlineUpdateException(ERR_READING_CONFIG_LDAP.get(t), t)); |
| | | } |
| | | taskEntries = Collections.unmodifiableSet(ts); |
| | | for (ConnectionHandlerDescriptor ch : getConnectionHandlers()) |
| | |
| | | } |
| | | catch (NamingException ne) |
| | | { |
| | | throw new OnlineUpdateException( |
| | | ERR_READING_SCHEMA_LDAP.get(ne.toString()), ne); |
| | | throw new OnlineUpdateException(ERR_READING_SCHEMA_LDAP.get(ne), ne); |
| | | } |
| | | schema = loader.getSchema(); |
| | | } |
| | |
| | | } |
| | | catch (NamingException ne) |
| | | { |
| | | OnlineUpdateException oue = new OnlineUpdateException( |
| | | ERR_READING_CONFIG_LDAP.get(ne.getMessage().toString()), ne); |
| | | ex.add(oue); |
| | | ex.add(new OnlineUpdateException( |
| | | ERR_READING_CONFIG_LDAP.get(ne.getMessage()), ne)); |
| | | } |
| | | } |
| | | |
| | |
| | | } |
| | | catch (NamingException ne) |
| | | { |
| | | OnlineUpdateException oue = new OnlineUpdateException( |
| | | ERR_READING_CONFIG_LDAP.get(ne.getMessage().toString()), ne); |
| | | ex.add(oue); |
| | | ex.add(new OnlineUpdateException( |
| | | ERR_READING_CONFIG_LDAP.get(ne.getMessage()), ne)); |
| | | } |
| | | } |
| | | |