from fansifter_common.exceptions import ObjectNotFoundError class ShopifyStoreNotFoundError(ObjectNotFoundError): code = "shopify_store_not_found" message = "Shopify Store not found" class ShopifyStoreNotYetProcessed(ObjectNotFoundError): code = "shopify_store_not_yet_processed" message = "Shopify Store not yet processed" class ShopifyCollectionNotFoundError(ObjectNotFoundError): code = "shopify_collection_not_found" message = "Shopify Collection not found"