Sha256: 5d8cf629c4aef15da237dbfa91bf29ff589da6f95ecd06dcdc90d301b59e337c
Contents?: true
Size: 1.92 KB
Versions: 8
Compression:
Stored size: 1.92 KB
Contents
module Braintree # :nodoc: # Super class for all Braintree exceptions. class BraintreeError < ::StandardError; end # See http://www.braintreepayments.com/docs/ruby/general/exceptions class AuthenticationError < BraintreeError; end # See http://www.braintreepayments.com/docs/ruby/general/exceptions class AuthorizationError < BraintreeError; end # See http://www.braintreepayments.com/docs/ruby/general/exceptions class ConfigurationError < BraintreeError def initialize(setting, message) # :nodoc: super "Braintree::Configuration.#{setting} #{message}" end end # See http://www.braintreepayments.com/docs/ruby/general/exceptions class DownForMaintenanceError < BraintreeError; end # See http://www.braintreepayments.com/docs/ruby/general/exceptions class ForgedQueryString < BraintreeError; end # See http://www.braintreepayments.com/docs/ruby/general/exceptions class InvalidSignature < BraintreeError; end # See http://www.braintreepayments.com/docs/ruby/general/exceptions class NotFoundError < BraintreeError; end # See http://www.braintreepayments.com/docs/ruby/general/exceptions class ServerError < BraintreeError; end # See http://www.braintreepayments.com/docs/ruby/general/exceptions class SSLCertificateError < BraintreeError; end # See http://www.braintreepayments.com/docs/ruby/general/exceptions class UnexpectedError < BraintreeError; end # See http://www.braintreepayments.com/docs/ruby/general/exceptions class UpgradeRequiredError < BraintreeError; end # See http://www.braintreepayments.com/docs/ruby/general/exceptions class ValidationsFailed < BraintreeError attr_reader :error_result def initialize(error_result) @error_result = error_result end def inspect "#<#{self.class} error_result: #{@error_result.inspect}>" end def to_s inspect end end class TestOperationPerformedInProduction < BraintreeError; end end
Version data entries
8 entries across 8 versions & 1 rubygems