Sha256: 0854a51acb11c57292d15556e8328522ffbf7f41f58f7797ad946a96ac370f8c
Contents?: true
Size: 270 Bytes
Versions: 3
Compression:
Stored size: 270 Bytes
Contents
# frozen_string_literal: true module Cardknox class Error < StandardError attr_reader :response def initialize(exception = nil, response = nil) @response = response super(exception) end class TransactionFailure < self end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
cardknox-0.3.0 | lib/cardknox/error.rb |
cardknox-0.2.0 | lib/cardknox/error.rb |
cardknox-0.1.0 | lib/cardknox/error.rb |