exceptions¤
Exception classes.
ConnectionTimeoutError ¤
ConnectionTimeoutError(message)
Bases: OSError
Raised when the connection to the 32-bit server cannot be established.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
message
|
str
|
The error message. |
required |
Source code in src/msl/loadlib/exceptions.py
11 12 13 14 15 16 17 18 19 |
|
ResponseTimeoutError ¤
Bases: OSError
Raised when a timeout occurs while waiting for a response from the 32-bit server.
Added in version 0.6
Server32Error ¤
Server32Error(value, *, name='', traceback='')
Bases: HTTPException
Raised when an exception occurs on the 32-bit server.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value
|
str
|
The error message. |
required |
name
|
str
|
The name of the exception type. |
''
|
traceback
|
str
|
The exception traceback from the server. |
''
|
Added in version 0.5
Source code in src/msl/loadlib/exceptions.py
31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
|