From e9733d401782d474f0754f4212cf67a4b2fdabf5 Mon Sep 17 00:00:00 2001 From: "Matthias J. Kannwischer" Date: Sun, 15 Dec 2024 13:11:26 +0800 Subject: [PATCH] define missing SlothySelfCheckException --- slothy/core/core.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/slothy/core/core.py b/slothy/core/core.py index 49470d89..5994d38b 100644 --- a/slothy/core/core.py +++ b/slothy/core/core.py @@ -55,6 +55,9 @@ class SlothyException(Exception): """Generic exception thrown by SLOTHY""" +class SlothySelfCheckException(SlothyException): + """Exception thrown by SLOTHY during tht selfcheck """ + class Result(LockAttributes): """The results of a one-shot SLOTHY optimization run"""