daemon: moved service boot error to core.errors with all other core specific errors

This commit is contained in:
Blake Harnden 2020-08-27 10:46:55 -07:00
parent 5300eef27e
commit f6992e7545
2 changed files with 18 additions and 9 deletions

View file

@ -38,3 +38,11 @@ class CoreServiceError(Exception):
"""
pass
class CoreServiceBootError(Exception):
"""
Used when there is an error booting a service.
"""
pass