Exception: Deas::NoHandlerClassError

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

Instance Method Summary collapse

Constructor Details

#initialize(handler_class_name) ⇒ NoHandlerClassError

Returns a new instance of NoHandlerClassError.



45
46
47
48
# File 'lib/deas/route.rb', line 45

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