Exception: Apes::Errors::BaseError
- Inherits:
-
RuntimeError
- Object
- RuntimeError
- Apes::Errors::BaseError
- Defined in:
- lib/apes/errors.rb
Overview
The base error.
Direct Known Subclasses
Instance Attribute Summary (collapse)
-
- (Object) details
readonly
Returns the value of attribute details.
Instance Method Summary (collapse)
-
- (BaseError) initialize(details = nil)
constructor
Creates a new error.
Constructor Details
- (BaseError) initialize(details = nil)
Creates a new error.
16 17 18 19 |
# File 'lib/apes/errors.rb', line 16 def initialize(details = nil) super("") @details = details end |
Instance Attribute Details
- (Object) details (readonly)
Returns the value of attribute details
11 12 13 |
# File 'lib/apes/errors.rb', line 11 def details @details end |