class Swat::Capybara::Exceptions::SwatException

Constants

MESSAGE

Public Class Methods

new(*args) click to toggle source
Calls superclass method
# File lib/swat/capybara/exceptions.rb, line 7
def initialize(*args)
  @args = args
  super(message(*args))
end

Public Instance Methods

message() click to toggle source
# File lib/swat/capybara/exceptions.rb, line 12
def message
  self.class::MESSAGE
end