home-assistant/custom_components/hacs/helpers/classes/exceptions.py

14 lines
269 B
Python

"""Custom Exceptions."""
class HacsException(Exception):
"""Super basic."""
class HacsRepositoryArchivedException(HacsException):
"""For repositories that are archived."""
class HacsExpectedException(HacsException):
"""For stuff that are expected."""