class ZuoraConnect::JsonParseErrors::DynamicRailsError

Note(hartley): remove once the minimum supported version of Rails is 5.2

def self.===(exception)

def self.===(exception)
  if Rails.version >= "5.2"
    exception.is_a?(ActionDispatch::Http::Parameters::ParseError)
  else
    exception.is_a?(ActionDispatch::ParamsParser::ParseError)
  end
end