Skip to content

Exceptions

DatabaseUnavailableException

Bases: GerminateAIException

Database backend in not reachable.

Source code in germinate_ai/core/exceptions.py
class DatabaseUnavailableException(GerminateAIException):
    """Database backend in not reachable."""

    pass

GerminateAIException

Bases: Exception

Base class for Germinate AI exceptions.

Source code in germinate_ai/core/exceptions.py
1
2
3
4
class GerminateAIException(Exception):
    """Base class for Germinate AI exceptions."""

    pass

InvalidArgumentsException

Bases: GerminateAIException

Invalid arguments.

Source code in germinate_ai/core/exceptions.py
class InvalidArgumentsException(GerminateAIException):
    """Invalid arguments."""

    pass

InvalidConfigurationException

Bases: GerminateAIException

The configuration is invalid.

Source code in germinate_ai/core/exceptions.py
class InvalidConfigurationException(GerminateAIException):
    """The configuration is invalid."""

    pass

InvalidTasksDagException

Bases: GerminateAIException

Tasks DAG is invalid.

Source code in germinate_ai/core/exceptions.py
class InvalidTasksDagException(GerminateAIException):
    """Tasks DAG is invalid."""

    pass

InvalidWorkflowException

Bases: GerminateAIException

Workflow is invalid.

Source code in germinate_ai/core/exceptions.py
class InvalidWorkflowException(GerminateAIException):
    """Workflow is invalid."""

    pass

MessageBusUnavailableException

Bases: GerminateAIException

Messaging bus backend in not reachable.

Source code in germinate_ai/core/exceptions.py
class MessageBusUnavailableException(GerminateAIException):
    """Messaging bus backend in not reachable."""

    pass

WorkflowFileNotFoundException

Bases: GerminateAIException

Could not find the specified workflow definition module file.

Source code in germinate_ai/core/exceptions.py
class WorkflowFileNotFoundException(GerminateAIException):
    """Could not find the specified workflow definition module file."""

    pass

WorkflowImportException

Bases: GerminateAIException

Failed to import the specified workflow definition.

Source code in germinate_ai/core/exceptions.py
class WorkflowImportException(GerminateAIException):
    """Failed to import the specified workflow definition."""

    pass