Exception: Roby::FailedExceptionHandler

Inherits:
CodeError show all
Defined in:
lib/roby/standard_errors.rb

Overview

Raised when an exception handler has raised.

Instance Attribute Summary collapse

Attributes inherited from CodeError

#error

Attributes inherited from LocalizedError

#failed_event, #failed_generator, #failed_task, #failure_point

Instance Method Summary collapse

Methods inherited from CodeError

#pretty_print

Methods inherited from LocalizedError

#involved_plan_object?, #pretty_print

Constructor Details

#initialize(error, object, handled_exception) ⇒ FailedExceptionHandler

Returns a new instance of FailedExceptionHandler.



130
131
132
133
# File 'lib/roby/standard_errors.rb', line 130

def initialize(error, object, handled_exception)
    super(error, object)
    @handled_exception = handled_exception
end

Instance Attribute Details

#handled_exceptionObject (readonly)

Returns the value of attribute handled_exception.



129
130
131
# File 'lib/roby/standard_errors.rb', line 129

def handled_exception
  @handled_exception
end