Exception: ActionController::MethodNotAllowed
- Inherits:
 - 
      ActionControllerError
      
        
- Object
 - StandardError
 - ActionControllerError
 - ActionController::MethodNotAllowed
 
 
- Defined in:
 - lib/action_controller/metal/exceptions.rb
 
Overview
:nodoc:
Direct Known Subclasses
Instance Method Summary collapse
- 
  
    
      #initialize(*allowed_methods)  ⇒ MethodNotAllowed 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of MethodNotAllowed.
 
Constructor Details
#initialize(*allowed_methods) ⇒ MethodNotAllowed
Returns a new instance of MethodNotAllowed.
      29 30 31  | 
    
      # File 'lib/action_controller/metal/exceptions.rb', line 29 def initialize(*allowed_methods) super("Only #{allowed_methods.to_sentence(locale: :en)} requests are allowed.") end  |