Class: Sanford::NoHandlerClassError

Inherits:
BaseError
  • Object
show all
Defined in:
lib/sanford/exceptions.rb

Instance Method Summary collapse

Constructor Details

#initialize(handler_class_name) ⇒ NoHandlerClassError

Returns a new instance of NoHandlerClassError.



31
32
33
34
# File 'lib/sanford/exceptions.rb', line 31

def initialize(handler_class_name)
  super "Sanford couldn't find the service handler '#{handler_class_name}'. " \
    "It doesn't exist or hasn't been required in yet."
end