| | |
| | | { |
| | | logger.traceException(e); |
| | | |
| | | LocalizableMessage message = |
| | | ERR_JMX_ALERT_HANDLER_CANNOT_REGISTER.get(String.valueOf(e)); |
| | | LocalizableMessage message = ERR_JMX_ALERT_HANDLER_CANNOT_REGISTER.get(e); |
| | | throw new InitializationException(message, e); |
| | | } |
| | | } |
| | |
| | | throws AttributeNotFoundException |
| | | { |
| | | // There are no attributes for this MBean. |
| | | LocalizableMessage message = ERR_CONFIG_JMX_ATTR_NO_ATTR.get( |
| | | String.valueOf(configEntryDN), attribute); |
| | | LocalizableMessage message = ERR_CONFIG_JMX_ATTR_NO_ATTR.get(configEntryDN, attribute); |
| | | throw new AttributeNotFoundException(message.toString()); |
| | | } |
| | | |
| | |
| | | throws AttributeNotFoundException, InvalidAttributeValueException |
| | | { |
| | | // There are no attributes for this MBean. |
| | | LocalizableMessage message = ERR_CONFIG_JMX_ATTR_NO_ATTR.get( |
| | | String.valueOf(configEntryDN), String.valueOf(attribute)); |
| | | LocalizableMessage message = ERR_CONFIG_JMX_ATTR_NO_ATTR.get(configEntryDN, attribute); |
| | | throw new AttributeNotFoundException(message.toString()); |
| | | } |
| | | |