pipeline_penguin.exceptions
This module contains custom Exceptions to be used on the internal components of the pipeline_penguin.
Location: pipeline_penguin/
Example usage:
raise WrongTypeReference("DataNode should be of type NodeType")
View Source
r"""This module contains custom Exceptions to be used on the internal components of the pipeline_penguin. Location: pipeline_penguin/ Example usage: ```python raise WrongTypeReference("DataNode should be of type NodeType") ``` """ class NodeManagerMissingCorrectArgs(TypeError): """Raised when there are missing arguments in DataNode __init__.""" pass class ConnectorManagerMissingCorrectArgs(TypeError): """Raised when there are missing arguments in ConnectorManager create_connector.""" pass class WrongTypeReference(Exception): """Raised when reference is the wrong type.""" pass
View Source
class NodeManagerMissingCorrectArgs(TypeError): """Raised when there are missing arguments in DataNode __init__.""" pass
Raised when there are missing arguments in DataNode __init__.
Inherited Members
- builtins.TypeError
- TypeError
- builtins.BaseException
- with_traceback
- args
View Source
class ConnectorManagerMissingCorrectArgs(TypeError): """Raised when there are missing arguments in ConnectorManager create_connector.""" pass
Raised when there are missing arguments in ConnectorManager create_connector.
Inherited Members
- builtins.TypeError
- TypeError
- builtins.BaseException
- with_traceback
- args
View Source
class WrongTypeReference(Exception): """Raised when reference is the wrong type.""" pass
Raised when reference is the wrong type.
Inherited Members
- builtins.Exception
- Exception
- builtins.BaseException
- with_traceback
- args