Exception: SmokeSignals::RescueException
- Inherits:
-
StackUnwindException
- Object
- Exception
- StackUnwindException
- SmokeSignals::RescueException
- Defined in:
- lib/smoke_signals.rb
Overview
You should never rescue this exception. See StackUnwindException.
Instance Attribute Summary (collapse)
-
- (Object) return_value
readonly
Returns the value of attribute return_value.
Attributes inherited from StackUnwindException
Instance Method Summary (collapse)
-
- (RescueException) initialize(nonce, return_value)
constructor
A new instance of RescueException.
Constructor Details
- (RescueException) initialize(nonce, return_value)
A new instance of RescueException
41 42 43 44 |
# File 'lib/smoke_signals.rb', line 41 def initialize(nonce, return_value) super(nonce) @return_value = return_value end |
Instance Attribute Details
- (Object) return_value (readonly)
Returns the value of attribute return_value
40 41 42 |
# File 'lib/smoke_signals.rb', line 40 def return_value @return_value end |