From 17ce1cd1c822638d667f8bb7f35bacbd72050ab5 Mon Sep 17 00:00:00 2001 From: jpgard Date: Thu, 4 Jan 2024 14:24:02 -0800 Subject: [PATCH] add exceptions module --- tableshift/exceptions.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 tableshift/exceptions.py diff --git a/tableshift/exceptions.py b/tableshift/exceptions.py new file mode 100644 index 0000000000..01e1124577 --- /dev/null +++ b/tableshift/exceptions.py @@ -0,0 +1,3 @@ +class ConfigNotFoundException(Exception): + """Raised when a config is not found.""" + pass \ No newline at end of file