From 8a54312fc4bf6e22707ae8fa871033fe75d7dff1 Mon Sep 17 00:00:00 2001 From: Andrew Fulton Date: Fri, 13 Nov 2020 15:32:31 -0700 Subject: [PATCH] moves error to another file --- upath/errors.py | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 upath/errors.py diff --git a/upath/errors.py b/upath/errors.py new file mode 100644 index 00000000..e193749e --- /dev/null +++ b/upath/errors.py @@ -0,0 +1,2 @@ +class NotDirectoryError(Exception): + pass