123456789_123456789_123456789_123456789_123456789_

Exception: ActionDispatch::ParamError

Relationships & Source Files
Extension / Inclusion / Inheritance Descendants
Subclasses:
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
self, Http::Parameters::ParseError, StandardError
Instance Chain:
self, Http::Parameters::ParseError, StandardError
Inherits: ActionDispatch::Http::Parameters::ParseError
Defined in: actionpack/lib/action_dispatch/http/param_error.rb

Class Method Summary

Constructor Details

.new(message = nil) ⇒ ParamError

[ GitHub ]

  
# File 'actionpack/lib/action_dispatch/http/param_error.rb', line 5

def initialize(message = nil)
  super
end

Class Method Details

.===(other)

[ GitHub ]

  
# File 'actionpack/lib/action_dispatch/http/param_error.rb', line 9

def self.===(other)
  super || (
    defined?(Rack::Utils::ParameterTypeError) && Rack::Utils::ParameterTypeError === other ||
    defined?(Rack::Utils::InvalidParameterError) && Rack::Utils::InvalidParameterError === other ||
    defined?(Rack::QueryParser::ParamsTooDeepError) && Rack::QueryParser::ParamsTooDeepError === other
  )
end