class Grape::Validations::Validators::ValuesValidator

def check_excepts(param_array)

def check_excepts(param_array)
  excepts = @excepts.is_a?(Proc) ? @excepts.call : @excepts
  return true if excepts.nil?
  param_array.none? { |param| excepts.include?(param) }
end