pyignite.exceptions module

exception pyignite.exceptions.AuthenticationError(message: str)

Bases: Exception

This exception is raised on authentication failure.

__init__(message: str)

Initialize self. See help(type(self)) for accurate signature.

exception pyignite.exceptions.BinaryTypeError

Bases: pyignite.exceptions.CacheError

A remote error in operation with Complex Object registry.

exception pyignite.exceptions.CacheCreationError

Bases: pyignite.exceptions.CacheError

This exception is raised, when any complex operation failed on cache creation phase.

exception pyignite.exceptions.CacheError

Bases: Exception

This exception is raised, whenever any remote Thin client cache operation returns an error.

exception pyignite.exceptions.ClusterError

Bases: Exception

This exception is raised, whenever any remote Thin client cluster operation returns an error.

exception pyignite.exceptions.HandshakeError(expected_version: Tuple[int, int, int], message: str)

Bases: OSError

This exception is raised on Ignite binary protocol handshake failure, as defined in https://ignite.apache.org/docs/latest/binary-client-protocol/binary-client-protocol#connection-handshake

__init__(expected_version: Tuple[int, int, int], message: str)

Initialize self. See help(type(self)) for accurate signature.

exception pyignite.exceptions.NotSupportedByClusterError

Bases: Exception

This exception is raised, whenever cluster does not supported specific operation probably because it is outdated.

exception pyignite.exceptions.NotSupportedError

Bases: Exception

This exception is raised, whenever client does not support specific operation.

exception pyignite.exceptions.ParameterError

Bases: Exception

This exception represents the parameter validation error in any pyignite method.

exception pyignite.exceptions.ParseError

Bases: Exception

This exception is raised, when pyignite is unable to build a query to, or parse a response from, Ignite node.

exception pyignite.exceptions.ReconnectError

Bases: Exception

This exception is raised by Client.reconnect method, when no more nodes are left to connect to. It is not meant to be an error, but rather a flow control tool, similar to StopIteration.

exception pyignite.exceptions.SQLError

Bases: pyignite.exceptions.CacheError

An error in SQL query.