// We have to check if the entry we want to delete has children, or not
int nbChild = getChildCount( deleteContext );
if ( nbChild > 1 )
{
throw new LdapContextNotEmptyException( "There are children under the entry " + deleteContext.getDn() );
}
// The SchemaObject always exist when we reach this method.
synchronizer.delete( deleteContext, cascade );
Entry deletedEntry = null;