class Inferno::Exceptions::ValidatorNotFoundException

Public Class Methods

new(validator_name) click to toggle source
Calls superclass method
# File lib/inferno/exceptions.rb, line 49
def initialize(validator_name)
  super("No '#{validator_name}' validator found")
end