Repository URL to install this package:
|
Version:
2.8.0 ▾
|
from prefect.exceptions import PrefectException
class ObjectNotFoundError(PrefectException):
"""
Error raised by the Orion API when a requested object is not found.
If thrown during a request, this exception will be caught and
a 404 response will be returned.
"""
class OrchestrationError(PrefectException):
"""An error raised while orchestrating a state transition"""
class MissingVariableError(PrefectException):
"""An error raised by the Orion API when attempting to create or update a
deployment with missing required variables.
"""