mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-21 12:52:21 -06:00
20 lines
278 B
Python
20 lines
278 B
Python
from django.core.exceptions import ImproperlyConfigured
|
|
|
|
__all__ = (
|
|
'IncompatiblePluginError',
|
|
'JobFailed',
|
|
'SyncError',
|
|
)
|
|
|
|
|
|
class IncompatiblePluginError(ImproperlyConfigured):
|
|
pass
|
|
|
|
|
|
class JobFailed(Exception):
|
|
pass
|
|
|
|
|
|
class SyncError(Exception):
|
|
pass
|