class RequestParamsValidation::UnsupportedTypeError

Public Class Methods

new(options) click to toggle source
Calls superclass method
# File lib/request_params_validation/exceptions/validator_errors.rb, line 43
def initialize(options)
  msg = "Unsupported type '#{options[:param_type]}' for the parameter '#{options[:param_key]}'"

  super(msg)
end