cic-internal-integration/apps/cic-notify/cic_notify/error.py

12 lines
258 B
Python
Raw Normal View History

2021-02-07 03:29:24 +01:00
class NotInitializedError(Exception):
pass
class AlreadyInitializedError(Exception):
pass
class PleaseCommitFirstError(Exception):
"""Raised when there exists uncommitted changes in the code while trying to build out the package."""
pass