web_shop_woocommerce/exceptions.py

12 lines
250 B
Python

# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
from trytond.exceptions import UserError
class WooCommerceError(UserError):
pass
class MissingParentsError(UserError):
pass