Error handling when node is missing from mesh for jobs and checks

This commit is contained in:
Alan Rominger
2021-10-15 11:23:38 -04:00
committed by Shane McDonald
parent 206c85778e
commit f34c96ecf5
3 changed files with 15 additions and 3 deletions

View File

@@ -36,3 +36,7 @@ class PostRunError(Exception):
self.status = status
self.tb = tb
super(PostRunError, self).__init__(msg)
class ReceptorNodeNotFound(RuntimeError):
pass