1
0
mirror of https://github.com/home-assistant/core.git synced 2026-04-02 08:26:41 +01:00

Renaming Exceptions to Errors

This commit is contained in:
Paulus Schoutsen
2014-01-23 21:33:12 -08:00
parent 36e28dbc80
commit 8952902d21

View File

@@ -471,9 +471,9 @@ class Timer(threading.Thread):
{'now': now})
class HomeAssistantException(Exception):
class HomeAssistantError(Exception):
""" General Home Assistant exception occured. """
class ServiceDoesNotExistException(HomeAssistantException):
class ServiceDoesNotExistError(HomeAssistantError):
""" A service has been referenced that deos not exist. """