# File lib/active_record/scoping.rb, line 107
      def with_exclusive_scope(method_scoping = {}, &block)
        if method_scoping.values.any? { |e| e.is_a?(ActiveRecord::Relation) }
          raise ArgumentError, "New finder API can not be used with_exclusive_scope. You can either call unscoped to get an anonymous scope not bound to the default_scope:\n\nUser.unscoped.where(:active => true)\n\nOr call unscoped with a block:\n\nUser.unscoped do\nUser.where(:active => true).all\nend\n\n"
        end
        with_scope(method_scoping, :overwrite, &block)
      end