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
- .===(other)
- .new(message = nil) ⇒ ParamError constructor
Http::Parameters::ParseError
- Inherited
Constructor Details
.new(message = nil) ⇒ ParamError
# File 'actionpack/lib/action_dispatch/http/param_error.rb', line 5
def initialize( = 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