502503504505506507508509510511512
LOG.debug( "Closed record manager for {} partition.", suffixDn ); } catch ( Throwable t ) { LOG.error( "Failed to close the record manager", t ); errors.addThrowable( t ); } if ( errors.size() > 0 ) { throw errors;
489490491492493494495496497498499
LOG.debug( "Closed {} index for {} partition.", index.getAttributeId(), suffixDn ); } catch ( Throwable t ) { LOG.error( I18n.err( I18n.ERR_124 ), t ); errors.addThrowable( t ); } } try {
501502503504505506507508509510511
LOG.debug( I18n.err( I18n.ERR_125, suffixDn ) ); } catch ( Throwable t ) { LOG.error( I18n.err( I18n.ERR_126 ), t ); errors.addThrowable( t ); } try { recMan.close();
512513514515516517518519520521522
LOG.debug( "Closed record manager for {} partition.", suffixDn ); } catch ( Throwable t ) { LOG.error( I18n.err( I18n.ERR_127 ), t ); errors.addThrowable( t ); } if ( errors.size() > 0 ) { throw errors;
114115116117118119120121122123124
if ( !errors.isEmpty() ) { MultiException e = new MultiException(); for ( Throwable t : errors ) { e.addThrowable( t ); } throw e; }