"""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)."""