Exception: PiGPIO::Error

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/pi_gpio/errors.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(code, message) ⇒ Error

Returns a new instance of Error.



7
8
9
10
# File 'lib/pi_gpio/errors.rb', line 7

def initialize(code, message)
  @code = code
  super(message)
end

Instance Attribute Details

#codeObject (readonly)

Returns the value of attribute code.



5
6
7
# File 'lib/pi_gpio/errors.rb', line 5

def code
  @code
end