class Isomorfeus::Puppetmaster::InvalidSelector

Public Class Methods

new(response, method, selector) click to toggle source
# File lib/isomorfeus/puppetmaster/errors.rb, line 42
def initialize(response, method, selector)
  super(response)
  @method, @selector = method, selector
end

Public Instance Methods

message() click to toggle source
# File lib/isomorfeus/puppetmaster/errors.rb, line 47
def message
  "Browser raised error trying to find #{@method}: #{@selector.inspect}"
end