class AbstractController::ActionNotFound
Raised when a non-existing controller action is triggered.
Attributes
action[R]
controller[R]
Public Class Methods
# File actionpack/lib/abstract_controller/base.rb, line 13 def initialize(message = nil, controller = nil, action = nil) @controller = controller @action = action super(message) end
Calls superclass method
© 2004–2020 David Heinemeier Hansson
Licensed under the MIT License.