Exception: Asynchronous::Error
- Inherits:
-
StandardError
- Object
- StandardError
- Asynchronous::Error
- Defined in:
- lib/asynchronous/error.rb
Instance Attribute Summary collapse
-
#wrapped_error ⇒ Object
readonly
Returns the value of attribute wrapped_error.
Instance Method Summary collapse
-
#initialize(wrapped_error) ⇒ Error
constructor
A new instance of Error.
Constructor Details
#initialize(wrapped_error) ⇒ Error
Returns a new instance of Error.
4 5 6 |
# File 'lib/asynchronous/error.rb', line 4 def initialize(wrapped_error) @wrapped_error= wrapped_error end |
Instance Attribute Details
#wrapped_error ⇒ Object (readonly)
Returns the value of attribute wrapped_error.
3 4 5 |
# File 'lib/asynchronous/error.rb', line 3 def wrapped_error @wrapped_error end |