class Roby::CommandFailed

Raised if a command block has raised an exception

Public Instance Methods

pretty_print(pp) click to toggle source
# File lib/roby/standard_errors.rb, line 302
def pretty_print(pp)
    pp.text "uncaught exception in the command of the "
    failed_generator.pretty_print(pp)
    pp.text " (#{self.class})"
end