Exception: Roby::FailedExceptionHandler
- Inherits:
-
CodeError
- Object
- RuntimeError
- LocalizedError
- CodeError
- Roby::FailedExceptionHandler
- Defined in:
- lib/roby/standard_errors.rb
Overview
Raised when an exception handler has raised.
Instance Attribute Summary collapse
-
#handled_exception ⇒ Object
readonly
Returns the value of attribute handled_exception.
Attributes inherited from CodeError
Attributes inherited from LocalizedError
#failed_event, #failed_generator, #failed_task, #failure_point
Instance Method Summary collapse
-
#initialize(error, object, handled_exception) ⇒ FailedExceptionHandler
constructor
A new instance of FailedExceptionHandler.
Methods inherited from CodeError
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_exception ⇒ Object (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 |