Exception: Ferrum::NoExecutionContextError

Inherits:
BrowserError show all
Defined in:
lib/ferrum.rb

Instance Attribute Summary

Attributes inherited from BrowserError

#response

Instance Method Summary collapse

Methods inherited from BrowserError

#code, #data

Constructor Details

#initialize(response = nil) ⇒ NoExecutionContextError

Returns a new instance of NoExecutionContextError.



93
94
95
96
# File 'lib/ferrum.rb', line 93

def initialize(response = nil)
  response ||= { "message" => "There's no context available" }
  super(response)
end