From 4262dd38ba697f0746888081baa06f495f175aa8 Mon Sep 17 00:00:00 2001 From: Jeff Bradberry Date: Wed, 1 Apr 2020 11:50:37 -0400 Subject: [PATCH] Change the NoNaturalKey exception to no longer derive from Common which seems to be entirely use for response exceptions. Maybe rename Common? --- awxkit/awxkit/exceptions.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/awxkit/awxkit/exceptions.py b/awxkit/awxkit/exceptions.py index cf26097cef..99d75c50d6 100644 --- a/awxkit/awxkit/exceptions.py +++ b/awxkit/awxkit/exceptions.py @@ -103,6 +103,11 @@ class IsMigrating(Common): pass -class NoNaturalKey(Common): +class ImportExportError(Exception): + + pass + + +class NoNaturalKey(ImportExportError): pass