Exception: Rox::Core::UserspaceHandlerException
- Inherits:
-
StandardError
- Object
- StandardError
- Rox::Core::UserspaceHandlerException
- Defined in:
- lib/rox/core/error_handling/userspace_handler_exception.rb
Instance Attribute Summary collapse
-
#exception_source ⇒ Object
Returns the value of attribute exception_source.
-
#exception_trigger ⇒ Object
Returns the value of attribute exception_trigger.
-
#original_exception ⇒ Object
Returns the value of attribute original_exception.
Instance Method Summary collapse
-
#initialize(exception_source, exception_trigger, original_exception) ⇒ UserspaceHandlerException
constructor
A new instance of UserspaceHandlerException.
Constructor Details
#initialize(exception_source, exception_trigger, original_exception) ⇒ UserspaceHandlerException
Returns a new instance of UserspaceHandlerException.
5 6 7 8 9 10 |
# File 'lib/rox/core/error_handling/userspace_handler_exception.rb', line 5 def initialize(exception_source, exception_trigger, original_exception) @exception_source = exception_source @exception_trigger = exception_trigger @original_exception = original_exception super('user unhandled exception in roxx expression') end |
Instance Attribute Details
#exception_source ⇒ Object
Returns the value of attribute exception_source.
4 5 6 |
# File 'lib/rox/core/error_handling/userspace_handler_exception.rb', line 4 def exception_source @exception_source end |
#exception_trigger ⇒ Object
Returns the value of attribute exception_trigger.
4 5 6 |
# File 'lib/rox/core/error_handling/userspace_handler_exception.rb', line 4 def exception_trigger @exception_trigger end |
#original_exception ⇒ Object
Returns the value of attribute original_exception.
4 5 6 |
# File 'lib/rox/core/error_handling/userspace_handler_exception.rb', line 4 def original_exception @original_exception end |