// check to see if target entry exists
Name target = ( Name ) newParentName.clone();
target.add( newRn );
if ( nextInterceptor.hasEntry( target ) )
{
LdapNameAlreadyBoundException e = null;
e = new LdapNameAlreadyBoundException( "target entry " + target
+ " already exists!" );
e.setResolvedName( target );
throw e;
}
nextInterceptor.move( oriChildName, newParentName, newRn, deleteOldRn );
}