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. """