221222223224225226227228229230231232233
+ dn + "' to delete it!"); } if ( getChildCount( id ) > 0 ) { LdapContextNotEmptyException cnee = new LdapContextNotEmptyException( "[66] Cannot delete entry " + dn + " it has children!" ); cnee.setRemainingName( dn ); throw cnee; } delete( id ); }
216217218219220221222223224225226227228
134135136137138139140141142143144145
} list.close(); if ( hasChildren ) { LdapContextNotEmptyException e = new LdapContextNotEmptyException(); e.setResolvedName( name ); throw e; } nextInterceptor.delete( name ); }
126127128129130131132133134135136137