nautobot.apps.exceptions
¶
Exceptions for Nautobot apps.
nautobot.apps.exceptions.AbortTransaction
¶
Bases:
An exception used to trigger a database transaction rollback.
nautobot.apps.exceptions.CeleryWorkerNotRunningException
¶
Bases:
Indicates the temporary inability to enqueue a new Celery task (e.g. custom script execution) because no Celery worker processes are currently running.
nautobot.apps.exceptions.ConfigurationError
¶
Bases:
Deprecated - no longer used in Nautobot core.
nautobot.apps.exceptions.FilterSetFieldNotFound
¶
Bases:
An exception indicating that a filterset field could not be found.
nautobot.apps.exceptions.SecretError
¶
Bases:
General purpose exception class for failures raised when secret value access fails.
nautobot.apps.exceptions.SecretParametersError
¶
Bases:
Exception raised when a Secret record's parameters are incorrectly specified.
Normally this should be caught during input validation of the Secret record, but in the case of direct ORM access bypassing the usual clean() functionality, it's possible to create a mis-defined Secret which would trigger this exception upon access.
nautobot.apps.exceptions.SecretProviderError
¶
Bases:
General purpose exception class for failures that indicate that a secrets provider is not working correctly.
nautobot.apps.exceptions.SecretValueNotFoundError
¶
Bases:
,
Exception raised when a secrets provider is operating normally but a specific requested secret is not found.