方法
类公开方法
===(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
new(message = nil) 链接
源代码: 显示 | 在 GitHub 上
# File actionpack/lib/action_dispatch/http/param_error.rb, line 5 def initialize(message = nil) super end