lib/active_merchant/billing/gateway.rb in activemerchant-1.63.0 vs lib/active_merchant/billing/gateway.rb in activemerchant-1.64.0
- old
+ new
@@ -75,10 +75,13 @@
# :card_declined - Card number declined by processor
# :processing_error - Processor error
# :call_issuer - Transaction requires voice authentication, call issuer
# :pickup_card - Issuer requests that you pickup the card from merchant
# :test_mode_live_card - Card was declined. Request was in test mode, but used a non test card.
+ # :unsupported_feature - Transaction failed due to gateway or merchant
+ # configuration not supporting a feature used, such
+ # as network tokenization.
STANDARD_ERROR_CODE = {
:incorrect_number => 'incorrect_number',
:invalid_number => 'invalid_number',
:invalid_expiry_date => 'invalid_expiry_date',
@@ -91,10 +94,11 @@
:card_declined => 'card_declined',
:processing_error => 'processing_error',
:call_issuer => 'call_issuer',
:pickup_card => 'pick_up_card',
:config_error => 'config_error',
- :test_mode_live_card => 'test_mode_live_card'
+ :test_mode_live_card => 'test_mode_live_card',
+ :unsupported_feature => 'unsupported_feature',
}
cattr_reader :implementations
@@implementations = []