Change the NoNaturalKey exception to no longer derive from Common

which seems to be entirely use for response exceptions.  Maybe rename
Common?
This commit is contained in:
Jeff Bradberry 2020-04-01 11:50:37 -04:00
parent 0deacc4391
commit 4262dd38ba

View File

@ -103,6 +103,11 @@ class IsMigrating(Common):
pass
class NoNaturalKey(Common):
class ImportExportError(Exception):
pass
class NoNaturalKey(ImportExportError):
pass