Exception: Interest::Exception
- Inherits:
-
StandardError
- Object
- StandardError
- Interest::Exception
- Defined in:
- lib/interest/exception.rb
Direct Known Subclasses
Blockable::Exceptions::Exception, FollowRequestable::Exceptions::Exception, Followable::Exceptions::Exception
Instance Attribute Summary collapse
-
#original_exception ⇒ Object
Returns the value of attribute original_exception.
Instance Method Summary collapse
-
#initialize(original_exception) ⇒ Exception
constructor
A new instance of Exception.
Constructor Details
#initialize(original_exception) ⇒ Exception
Returns a new instance of Exception.
5 6 7 8 |
# File 'lib/interest/exception.rb', line 5 def initialize(original_exception) self.original_exception = original_exception super() end |
Instance Attribute Details
#original_exception ⇒ Object
Returns the value of attribute original_exception.
3 4 5 |
# File 'lib/interest/exception.rb', line 3 def original_exception @original_exception end |