From b5066c3c5604958209d6c497b4542ad150d8325f Mon Sep 17 00:00:00 2001 From: Dougal Matthews Date: Tue, 25 Apr 2017 14:47:36 +0100 Subject: [PATCH] Remove the unused ApplicationContextNotFoundException Change-Id: I3ac12ee4a7d7369ac7f59b969b0ca07b4752b3b5 --- mistral_lib/exceptions.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/mistral_lib/exceptions.py b/mistral_lib/exceptions.py index f25c6ff..26a75fe 100644 --- a/mistral_lib/exceptions.py +++ b/mistral_lib/exceptions.py @@ -75,8 +75,3 @@ class MistralException(Exception): """ message = "An unknown exception occurred" - - -class ApplicationContextNotFoundException(MistralException): - http_code = 400 - message = "Application context not found"