daemon: added a more specific error to be thrown when a service does not exist

This commit is contained in:
Blake Harnden 2020-08-27 10:43:13 -07:00
parent 534af7cc45
commit 5300eef27e
2 changed files with 13 additions and 2 deletions

View file

@ -30,3 +30,11 @@ class CoreXmlError(Exception):
"""
pass
class CoreServiceError(Exception):
"""
Used when there is an error related to accessing a service.
"""
pass