exceptions.py 278 B

12345678910111213141516171819
  1. from django.core.exceptions import ImproperlyConfigured
  2. __all__ = (
  3. 'IncompatiblePluginError',
  4. 'JobFailed',
  5. 'SyncError',
  6. )
  7. class IncompatiblePluginError(ImproperlyConfigured):
  8. pass
  9. class JobFailed(Exception):
  10. pass
  11. class SyncError(Exception):
  12. pass