class Quickbooks::AuthorizationFailure
Attributes
code[RW]
detail[RW]
type[RW]
Public Class Methods
new(error_hash = {})
click to toggle source
Calls superclass method
# File lib/quickbooks-ruby.rb, line 259 def initialize(error_hash = {}) @code = error_hash[:code] @detail = error_hash[:detail] @type = error_hash[:type] super(error_hash[:message]) end