# app/modules/customers/exceptions.py """ Customers module exceptions. Re-exports customer-related exceptions from their source locations. """ from app.exceptions.customer import ( CustomerNotFoundException, CustomerAlreadyExistsException, DuplicateCustomerEmailException, CustomerNotActiveException, InvalidCustomerCredentialsException, CustomerValidationException, CustomerAuthorizationException, ) from app.exceptions.address import ( AddressNotFoundException, AddressLimitExceededException, InvalidAddressTypeException, ) __all__ = [ # Customer exceptions "CustomerNotFoundException", "CustomerAlreadyExistsException", "DuplicateCustomerEmailException", "CustomerNotActiveException", "InvalidCustomerCredentialsException", "CustomerValidationException", "CustomerAuthorizationException", # Address exceptions "AddressNotFoundException", "AddressLimitExceededException", "InvalidAddressTypeException", ]