msl.loadlib.exceptions module

Exception classes.

exception msl.loadlib.exceptions.ConnectionTimeoutError(*args, **kwargs)[source]

Bases: OSError

Raised when the connection to the 32-bit server cannot be established.

exception msl.loadlib.exceptions.Server32Error(value, name=None, traceback=None)[source]

Bases: HTTPException

Raised when an exception occurs on the 32-bit server.

New in version 0.5.

Parameters:
  • value (str) – The error message.

  • name (str, optional) – The name of the exception.

  • traceback (str, optional) – The exception traceback.

property name

The name of the exception from the 32-bit server.

Type:

str

property traceback

The exception traceback from the 32-bit server.

Type:

str

property value

The error message from the 32-bit server.

Type:

str

exception msl.loadlib.exceptions.ResponseTimeoutError[source]

Bases: OSError

Raised when a timeout occurs while waiting for a response from the 32-bit server.

New in version 0.6.