module RETS::ReplyErrors

Generic module that provides access to the code and text separately of the exception

Attributes

reply_code[R]
reply_text[R]

Public Class Methods

new(msg, reply_code=nil, reply_text=nil) click to toggle source
Calls superclass method
# File lib/rets/exceptions.rb, line 7
def initialize(msg, reply_code=nil, reply_text=nil)
  super(msg)
  @reply_code, @reply_text = reply_code, reply_text
end