Files
wiggleverse-ecomm/backend/app/domains/storefronts/errors.py
T

11 lines
269 B
Python

"""storefronts domain errors."""
from __future__ import annotations
class StorefrontsError(Exception):
"""Base for storefronts-domain errors."""
class AlreadyOwnsStorefront(StorefrontsError):
"""INV-4: the account already has its one storefront (PUC-7)."""