Exception: Apiway::ControllerActionNotExists

Inherits:
StandardError
  • Object
show all
Defined in:
lib/apiway/errors.rb

Instance Method Summary collapse

Constructor Details

#initialize(controller_name, action_name) ⇒ ControllerActionNotExists

Returns a new instance of ControllerActionNotExists.



24
25
26
# File 'lib/apiway/errors.rb', line 24

def initialize( controller_name, action_name )
  super "Action \"#{ action_name }\" not exists in \"#{ controller_name }\""
end