| | |
| | | catch (IOException ioe) |
| | | { |
| | | logger.traceException(ioe); |
| | | throw new DirectoryException(errorRC, ERR_JEB_EXPORT_IO_ERROR.get(ioe.getMessage())); |
| | | throw new DirectoryException(errorRC, ERR_JEB_EXPORT_IO_ERROR.get(ioe.getMessage()), ioe); |
| | | } |
| | | catch (StorageRuntimeException de) |
| | | { |
| | |
| | | } |
| | | catch (ConfigException ce) |
| | | { |
| | | throw new DirectoryException(errorRC, ce.getMessageObject()); |
| | | throw new DirectoryException(errorRC, ce.getMessageObject(), ce); |
| | | } |
| | | catch (IdentifiedException e) |
| | | { |
| | |
| | | throw (DirectoryException) e; |
| | | } |
| | | logger.traceException(e); |
| | | throw new DirectoryException(errorRC, e.getMessageObject()); |
| | | throw new DirectoryException(errorRC, e.getMessageObject(), e); |
| | | } |
| | | finally |
| | | { |