Exception: Lucie::ControllerNotFound

Inherits:
StandardError
  • Object
show all
Defined in:
lib/lucie/exceptions.rb

Instance Method Summary collapse

Constructor Details

#initialize(controller_name) ⇒ ControllerNotFound

Returns a new instance of ControllerNotFound.



9
10
11
# File 'lib/lucie/exceptions.rb', line 9

def initialize(controller_name)
  super "Controller is not found for #{controller_name}."
end