Exception to raise when user tries to add add-on repository.
| 26 | |
| 27 | |
| 28 | class AddonRepositoryException(HacsException): |
| 29 | """Exception to raise when user tries to add add-on repository.""" |
| 30 | |
| 31 | exception_message = ( |
| 32 | "The repository does not seem to be a integration, " |
| 33 | "but an add-on repository. HACS does not manage add-ons." |
| 34 | ) |
| 35 | |
| 36 | def __init__(self) -> None: |
| 37 | super().__init__(self.exception_message) |
| 38 | |
| 39 | |
| 40 | class HomeAssistantCoreRepositoryException(HacsException): |
no outgoing calls
no test coverage detected
searching dependent graphs…