class Roby::TaskStructure::MissingRequiredExecutionAgent

Public Class Methods

new(task) click to toggle source
Calls superclass method Roby::CodeError::new
# File lib/roby/task_structure/executed_by.rb, line 179
def initialize(task)
    super(nil, task.start_event)
end

Public Instance Methods

pretty_print(pp) click to toggle source
# File lib/roby/task_structure/executed_by.rb, line 182
def pretty_print(pp)
    pp.text "attempted to start a task that is expecting an execution agent but has none"
    pp.breakable
    failed_task.pretty_print(pp)
end