From 13ac77ebffebdfbdf45efe0a033f8c4365204c66 Mon Sep 17 00:00:00 2001 From: Keiran Price Date: Wed, 18 Sep 2019 09:06:09 +0100 Subject: [PATCH] #39: Add MultipleIncludeError --- common/exceptions.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/common/exceptions.py b/common/exceptions.py index f80a9c20..369ad2de 100644 --- a/common/exceptions.py +++ b/common/exceptions.py @@ -10,6 +10,10 @@ class BadFilterError(ApiError): pass +class MultipleIncludeError(BadFilterError): + pass + + class AuthenticationError(ApiError): pass