From d98fa10efbf0b304cfc1b5837609983ccb3791bf Mon Sep 17 00:00:00 2001
From: Jorrit Schaap <schaap@astron.nl>
Date: Tue, 11 Feb 2020 13:21:37 +0100
Subject: [PATCH] TMSS-142: added initial TMSS exceptions

---
 SAS/TMSS/src/tmss/CMakeLists.txt | 1 +
 SAS/TMSS/src/tmss/exceptions.py  | 6 ++++++
 2 files changed, 7 insertions(+)
 create mode 100644 SAS/TMSS/src/tmss/exceptions.py

diff --git a/SAS/TMSS/src/tmss/CMakeLists.txt b/SAS/TMSS/src/tmss/CMakeLists.txt
index f0786d66c89..a38c2b149ed 100644
--- a/SAS/TMSS/src/tmss/CMakeLists.txt
+++ b/SAS/TMSS/src/tmss/CMakeLists.txt
@@ -6,6 +6,7 @@ set(_py_files
     settings.py
     urls.py
     wsgi.py
+    exceptions.py
     )
 
 python_install(${_py_files}
diff --git a/SAS/TMSS/src/tmss/exceptions.py b/SAS/TMSS/src/tmss/exceptions.py
new file mode 100644
index 00000000000..96845ac76d8
--- /dev/null
+++ b/SAS/TMSS/src/tmss/exceptions.py
@@ -0,0 +1,6 @@
+
+class TMSSException(Exception):
+    pass
+
+class SpecificationException(TMSSException):
+    pass
-- 
GitLab