class Trio::Blog::API::SelectorNotFoundError

Attributes

selector[R]

Public Class Methods

new(selector) click to toggle source
Calls superclass method
# File lib/trio/blog/api/error/selector_not_found_error.rb, line 7
def initialize(selector)
  super("Element not found with '#{selector}' selector")
  @selector = selector
end