class Rets::InvalidRequest

Attributes

error_code[R]
reply_text[R]

Public Class Methods

new(error_code, reply_text) click to toggle source
Calls superclass method
# File lib/rets.rb, line 44
def initialize(error_code, reply_text)
  @error_code = error_code
  @reply_text = reply_text
  super("Got error code #{error_code} (#{reply_text})")
end