18 lines
317 B
Python
18 lines
317 B
Python
from shoppingcart.exceptions import PaymentException
|
|
|
|
|
|
class CCProcessorException(PaymentException):
|
|
pass
|
|
|
|
|
|
class CCProcessorSignatureException(CCProcessorException):
|
|
pass
|
|
|
|
|
|
class CCProcessorDataException(CCProcessorException):
|
|
pass
|
|
|
|
|
|
class CCProcessorWrongAmountException(CCProcessorException):
|
|
pass
|