msl.loadlib.exceptions module

Exception classes.

exception msl.loadlib.exceptions.ConnectionTimeoutError(message)

Bases: OSError

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

Parameters:

message (str) – The error message.

Return type:

None

exception msl.loadlib.exceptions.Server32Error(value, *, name='', traceback='')

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) – The name of the exception type.

  • traceback (str) – The exception traceback.

Return type:

None

property name: str

The name of the exception type.

property traceback: str

The exception traceback.

property value: str

The error message.

exception msl.loadlib.exceptions.ResponseTimeoutError

Bases: OSError

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

New in version 0.6.