# File lib/rufus/sc/scheduler.rb, line 311
    def complain_if_blocking_and_timeout (job)

      raise(
        ArgumentError.new('cannot set a :timeout on a :blocking job')
      ) if job.params[:blocking] and job.params[:timeout]
    end