Exception: ActionController::MethodNotAllowed

Inherits:
ActionControllerError show all
Defined in:
actionpack/lib/action_controller/metal/exceptions.rb

Overview

:nodoc:

Direct Known Subclasses

NotImplemented

Instance Method Summary collapse

Constructor Details

#initialize(*allowed_methods) ⇒ MethodNotAllowed

Returns a new instance of MethodNotAllowed.



51
52
53
# File 'actionpack/lib/action_controller/metal/exceptions.rb', line 51

def initialize(*allowed_methods)
  super("Only #{allowed_methods.to_sentence} requests are allowed.")
end