| 12345678910111213141516171819 |
- from django.core.exceptions import ImproperlyConfigured
- __all__ = (
- 'IncompatiblePluginError',
- 'JobFailed',
- 'SyncError',
- )
- class IncompatiblePluginError(ImproperlyConfigured):
- pass
- class JobFailed(Exception):
- pass
- class SyncError(Exception):
- pass
|