method

===

rails latest stable - Class: ActionDispatch::ParamError

Method not available on this version

This method is only available on newer versions. The first available version (v8.0.0) is shown here.

===(other)
public

No documentation available.

# 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