schon/engine/core/errors.py

9 lines
180 B
Python

from django.core.exceptions import BadRequest, ImproperlyConfigured
class NotEnoughMoneyError(BadRequest):
pass
class DisabledCommerceError(ImproperlyConfigured):
pass