Exception: PubChemAPI::APIError
- Inherits:
-
StandardError
- Object
- StandardError
- PubChemAPI::APIError
- Defined in:
- lib/pubchem_api.rb
Overview
Custom exception class for API errors
Instance Attribute Summary collapse
-
#code ⇒ Object
readonly
Returns the value of attribute code.
Instance Method Summary collapse
-
#initialize(message, code = nil) ⇒ APIError
constructor
A new instance of APIError.
Constructor Details
#initialize(message, code = nil) ⇒ APIError
Returns a new instance of APIError.
9 10 11 12 |
# File 'lib/pubchem_api.rb', line 9 def initialize(, code = nil) super() @code = code end |
Instance Attribute Details
#code ⇒ Object (readonly)
Returns the value of attribute code.
7 8 9 |
# File 'lib/pubchem_api.rb', line 7 def code @code end |