class CapybaraObjects::Exceptions::TypeNotRegistered

Attributes

type[RW]

Public Class Methods

new(type) click to toggle source
# File lib/capybara_objects/exceptions/type_not_registered.rb, line 5
def initialize(type)
  self.type = type
end

Public Instance Methods

to_s() click to toggle source
# File lib/capybara_objects/exceptions/type_not_registered.rb, line 9
def to_s
  "Type not registered in CapybaraObjects::RegistryInstance (#{type})"
end