carlomitchener/shop/automator/core/errors.pyRaw · GitHub errors.py266 B · python · 23 lines 1# CORE23class NoTaskError(Exception):4 pass56class Retry(Exception):7 pass89class TaskFailed(Exception):10 pass1112class TaskAborted(Exception):13 pass1415# PRINTFUL1617class PrintfulError(Exception):18 pass1920# SHOPIFY2122class ShopifyError(Exception):23 pass