21 lines
381 B
Python
21 lines
381 B
Python
from shoppingcart.exceptions import PaymentException
|
|
|
|
|
|
class CCProcessorException(PaymentException):
|
|
pass
|
|
|
|
|
|
class CCProcessorSignatureException(CCProcessorException):
|
|
pass
|
|
|
|
|
|
class CCProcessorDataException(CCProcessorException):
|
|
pass
|
|
|
|
|
|
class CCProcessorWrongAmountException(CCProcessorException):
|
|
pass
|
|
|
|
class CCProcessorUserCancelled(CCProcessorException):
|
|
pass
|