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
-
#details ⇒ Object
readonly
Returns the value of attribute details.
Instance Method Summary collapse
-
#initialize(details = nil) ⇒ BaseError
constructor
Creates a new error.
Constructor Details
#initialize(details = nil) ⇒ BaseError
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
#details ⇒ Object (readonly)
Returns the value of attribute details.
11 12 13 |
# File 'lib/apes/errors.rb', line 11 def details @details end |