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

14 lines
269 B
Python
Raw Normal View History

2021-02-02 04:58:39 +00:00
"""Custom Exceptions."""
class HacsException(Exception):
"""Super basic."""
class HacsRepositoryArchivedException(HacsException):
"""For repositories that are archived."""
class HacsExpectedException(HacsException):
"""For stuff that are expected."""