Exception: Qs::NoHandlerClassError

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/qs/route.rb

Instance Method Summary collapse

Constructor Details

#initialize(handler_class_name) ⇒ NoHandlerClassError

Returns a new instance of NoHandlerClassError.



46
47
48
49
# File 'lib/qs/route.rb', line 46

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