Files
edx-platform/lms/djangoapps/shoppingcart/processors/exceptions.py
2013-08-22 15:39:56 -04:00

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