# File lib/thor/task.rb, line 11
      def run(instance, args=[])
        if (instance.methods & [name.to_s, name.to_sym]).empty?
          super
        else
          instance.class.handle_no_task_error(name)
        end
      end