console/app/cloud/controllers/payments/twocheckout/error.py
2016-01-03 07:00:16 +03:00

8 lines
342 B
Python

class TwocheckoutError(Exception):
def __init__(self, code=None, msg=None, product_id=None, option_id=None, coupon_code=None):
super(TwocheckoutError, self).__init__(msg)
self.code = code
self.msg = msg
self.product_id = product_id
self.option_id = option_id
self.coupon_code = coupon_code