Exception: PeaError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/pea_exception.rb

Direct Known Subclasses

PeaConnexionError, PeaQueryerror

Instance Method Summary collapse

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