exceptions.py 159 B

123456789
  1. from django.core.exceptions import ImproperlyConfigured
  2. class SyncError(Exception):
  3. pass
  4. class IncompatiblePluginError(ImproperlyConfigured):
  5. pass