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.



32
33
34
# File 'actionpack/lib/action_controller/metal/exceptions.rb', line 32

def initialize(*allowed_methods)
  super("Only #{allowed_methods.to_sentence(:locale => :en)} requests are allowed.")
end