From fc6b12ed0e8fbddaf1c5fb936fae3a6161129b67 Mon Sep 17 00:00:00 2001 From: Keiran Price Date: Thu, 20 Jun 2019 08:28:23 +0100 Subject: [PATCH] #1: Add bad request exception --- common/exceptions.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/common/exceptions.py b/common/exceptions.py index 796b388f..d07c506d 100644 --- a/common/exceptions.py +++ b/common/exceptions.py @@ -12,3 +12,7 @@ class BadFilterError(ApiError): class AuthenticationError(ApiError): pass + + +class BadRequestError(ApiError): + pass