Exception: Ferrum::BrowserError
Direct Known Subclasses
Instance Attribute Summary collapse
-
#response ⇒ Object
readonly
Returns the value of attribute response.
Instance Method Summary collapse
- #code ⇒ Object
- #data ⇒ Object
-
#initialize(response) ⇒ BrowserError
constructor
A new instance of BrowserError.
Constructor Details
#initialize(response) ⇒ BrowserError
Returns a new instance of BrowserError.
47 48 49 50 |
# File 'lib/ferrum.rb', line 47 def initialize(response) @response = response super(response["message"]) end |
Instance Attribute Details
#response ⇒ Object (readonly)
Returns the value of attribute response.
45 46 47 |
# File 'lib/ferrum.rb', line 45 def response @response end |
Instance Method Details
#code ⇒ Object
52 53 54 |
# File 'lib/ferrum.rb', line 52 def code response["code"] end |
#data ⇒ Object
56 57 58 |
# File 'lib/ferrum.rb', line 56 def data response["data"] end |