Exception: Lucie::Exceptions::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.



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

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