Exception: PeaError
- Inherits:
-
StandardError
- Object
- StandardError
- PeaError
- Defined in:
- lib/pea_exception.rb
Direct Known Subclasses
Instance Method Summary collapse
-
#initialize(msg = "Error coming from the Peasys library") ⇒ PeaError
constructor
Abstract the concept of exception encountered during the manipulation of the Peasys library.
Constructor Details
#initialize(msg = "Error coming from the Peasys library") ⇒ PeaError
Abstract the concept of exception encountered during the manipulation of the Peasys library
Params:
msg
-
The message describing the error.
10 11 12 |
# File 'lib/pea_exception.rb', line 10 def initialize(msg="Error coming from the Peasys library") super(msg) end |