From 8f2a9a8160930784a51d700176d5ce5101f2c7f3 Mon Sep 17 00:00:00 2001 From: dmt <> Date: Sun, 20 Oct 2019 23:13:29 +0200 Subject: [PATCH] Add errors module with BaseError and NoModelReconstructedError. --- cml/shared/errors.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 cml/shared/errors.py diff --git a/cml/shared/errors.py b/cml/shared/errors.py new file mode 100644 index 0000000..767d1d3 --- /dev/null +++ b/cml/shared/errors.py @@ -0,0 +1,8 @@ + + +class BaseError(Exception): + pass + + +class NoModelReconstructedError(BaseError): + pass -- GitLab