Exception: Undead::InvalidSelector

Inherits:
ClientError show all
Defined in:
lib/undead/errors.rb

Instance Attribute Summary

Attributes inherited from ClientError

#response

Instance Method Summary collapse

Methods inherited from ClientError

#initialize

Constructor Details

This class inherits a constructor from Undead::ClientError

Instance Method Details

#messageObject



92
93
94
95
# File 'lib/undead/errors.rb', line 92

def message
  "The browser raised a syntax error while trying to evaluate " \
    "#{method} selector #{selector.inspect}"
end

#methodObject



84
85
86
# File 'lib/undead/errors.rb', line 84

def method
  response['args'][0]
end

#selectorObject



88
89
90
# File 'lib/undead/errors.rb', line 88

def selector
  response['args'][1]
end