From c6893e1bd5283d982a7ecd6f84bdfdd0054ce7a7 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 19 May 2021 16:13:05 -0700 Subject: [PATCH] add LibraryNotInstalled exception --- jc/exceptions.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/jc/exceptions.py b/jc/exceptions.py index f7dd2571..32218db6 100644 --- a/jc/exceptions.py +++ b/jc/exceptions.py @@ -3,3 +3,7 @@ class ParseError(Exception): pass + + +class LibraryNotInstalled(Exception): + pass