class Roby::EventHandlerError

Raised when an event handler has raised.

Public Instance Methods

pretty_print(pp) click to toggle source
# File lib/roby/standard_errors.rb, line 335
def pretty_print(pp)
    pp.text "uncaught exception in an event handler of the "
    failed_generator.pretty_print(pp)
    pp.text " (#{self.class})"
    pp.breakable
    pp.text "called during the propagation of "
    failed_event.pretty_print(pp)
end