Do not report on shutting down errors (#4431)

* Do not report on shutting down errors

* Lint
This commit is contained in:
Paulus Schoutsen 2016-11-17 12:02:43 -08:00 committed by GitHub
parent b615b3349f
commit 726bc5b670
2 changed files with 13 additions and 3 deletions

View file

@ -7,6 +7,12 @@ class HomeAssistantError(Exception):
pass
class ShuttingDown(HomeAssistantError):
"""When trying to change something during shutdown."""
pass
class InvalidEntityFormatError(HomeAssistantError):
"""When an invalid formatted entity is encountered."""