Sha256: 4ae3c67ef70e35c64b09a18335fd2ad58a6a3f5aa1a5774d9f266f672eaeced1

Contents?: true

Size: 207 Bytes

Versions: 4

Compression:

Stored size: 207 Bytes

Contents

class EbanxApiException < StandardError
  attr_accessor :response, :http_code

  def initialize(message, response, http_code)
    super(message)
    @response = response
    @http_code = http_code
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ebanx-1.3.5 lib/ebanx/exception/ebanx_api_exception.rb
ebanx-1.3.4 lib/ebanx/exception/ebanx_api_exception.rb
ebanx-1.3.3 lib/ebanx/exception/ebanx_api_exception.rb
ebanx-1.3.2 lib/ebanx/exception/ebanx_api_exception.rb