class Roby::InvalidReplace

Raised by Plan#replace when the new task cannot replace the older one.

Attributes

from[R]

The task being replaced

to[R]

The task which should have replaced from

Public Class Methods

new(from, to) click to toggle source

Create a new InvalidReplace object

# File lib/roby/standard_errors.rb, line 409
def initialize(from, to)
    @from, @to = from, to
end