Exception: Polytrix::StandardError
- Inherits:
-
StandardError
- Object
- StandardError
- Polytrix::StandardError
- Includes:
- Error
- Defined in:
- lib/polytrix/error.rb
Overview
Base exception class from which all Polytrix exceptions derive. This class nests an exception when this class is re-raised from a rescue block.
Direct Known Subclasses
ClientError, Documentation::CommentStyles::UnknownStyleError, FeatureNotImplementedError, StateFileLoadError, TransientFailure, UserError
Instance Attribute Summary collapse
-
#original ⇒ ::StandardError
readonly
The original (wrapped) exception.
Instance Method Summary collapse
-
#initialize(msg, original = $ERROR_INFO) ⇒ StandardError
constructor
Creates a new StandardError exception which optionally wraps an original exception if given or detected by checking the ‘$!` global variable.
Methods included from Error
formatted_exception, formatted_trace
Constructor Details
#initialize(msg, original = $ERROR_INFO) ⇒ StandardError
Creates a new StandardError exception which optionally wraps an original exception if given or detected by checking the ‘$!` global variable.
74 75 76 77 |
# File 'lib/polytrix/error.rb', line 74 def initialize(msg, original = $ERROR_INFO) super(msg) @original = original end |
Instance Attribute Details
#original ⇒ ::StandardError (readonly)
Returns the original (wrapped) exception.
66 67 68 |
# File 'lib/polytrix/error.rb', line 66 def original @original end |