class Pandadoc::Api::ParamsValidator::ParameterTypeError

Attributes

parameter[R]
received[R]
requested[R]

Public Class Methods

new(message, parameter, received, requested) click to toggle source
Calls superclass method
# File lib/pandadoc/api/params_validator.rb, line 21
def initialize(message, parameter, received, requested)
  # Call the parent's constructor to set the message
  super(message)

  # Store the action in an instance variable
  @parameter = parameter
  @received = received
  @requested = requested
end