Sha256: b2c20a6f34c14ad7de3a40ee7a95f25236a939067d303ad9bcb338e313cbd481
Contents?: true
Size: 927 Bytes
Versions: 16
Compression:
Stored size: 927 Bytes
Contents
module ActiveMerchant #:nodoc: class ActiveMerchantError < StandardError #:nodoc: end class ConnectionError < ActiveMerchantError # :nodoc: attr_reader :triggering_exception def initialize(message, triggering_exception) super(message) @triggering_exception = triggering_exception end end class RetriableConnectionError < ConnectionError # :nodoc: end class ResponseError < ActiveMerchantError # :nodoc: attr_reader :response def initialize(response, message = nil) @response = response @message = message end def to_s "Failed with #{response.code if response.respond_to?(:code)} #{response.message if response.respond_to?(:message)}" end end class OAuthResponseError < ResponseError # :nodoc: end class ClientCertificateError < ActiveMerchantError # :nodoc end class InvalidResponseError < ActiveMerchantError # :nodoc end end
Version data entries
16 entries across 16 versions & 3 rubygems