class Roby::UnreachableEvent
Raised when an event has become unreachable while other parts of the plan where waiting for its emission.
Attributes
reason[R]
Why did the generator become unreachable
Public Class Methods
new(generator, reason)
click to toggle source
Create an UnreachableEvent
error for the given generator
. reason
is supposed to be either nil or a plan object which is the reason why generator
has become unreachable.
Calls superclass method
Roby::LocalizedError::new
# File lib/roby/standard_errors.rb, line 372 def initialize(generator, reason) super(generator) @reason = reason report_exceptions_from(reason) end