| 1234567891011121314151617181920212223242526272829303132 |
- class PaymentError(Exception):
- pass
-
-
- class TransactionDeclined(PaymentError):
- pass
-
-
- class GatewayError(PaymentError):
- pass
-
-
- class InvalidGatewayRequestError(PaymentError):
- pass
-
-
- class RedirectRequired(PaymentError):
- """
- Exception to be used when payment processsing requires a redirect
- """
-
- def __init__(self, url):
- self.url = url
-
-
- class UnableToTakePayment(PaymentError):
- """
- Exception to be used for ANTICIPATED payment errors (eg card number wrong, expiry date
- has passed). The message passed here will be shown to the end user.
- """
- pass
-
|