From 77e070bf697189cdc59efa9dc48c5bf40dc9e167 Mon Sep 17 00:00:00 2001 From: Daniel Tomlinson Date: Fri, 22 Oct 2021 05:21:05 +0100 Subject: [PATCH] adding base path exception --- tembo/exceptions.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 tembo/exceptions.py diff --git a/tembo/exceptions.py b/tembo/exceptions.py new file mode 100644 index 0000000..07776a4 --- /dev/null +++ b/tembo/exceptions.py @@ -0,0 +1,5 @@ +"""Tembo exceptions.""" + + +class BasePathDoesNotExistError(Exception): + pass