Skip to content

Commit

Permalink
Added docstrings to the exceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
frankcorneliusmartin committed Nov 3, 2022
1 parent 3de72b0 commit a398921
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions vantage6-node/vantage6/node/docker/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
class UnknownAlgorithmStartFail(Exception):
"""Algorithm failed to start due to an unknown reason. Potentially running
it again would resolve the issue.
"""
pass


class PermanentAlgorithmStartFail(Exception):
"""Algorithm failed to start and should not be attempted to be started
again.
"""
pass

0 comments on commit a398921

Please sign in to comment.