9728cfdb34
BREAKING CHANGE: Removed the `wait_timeout` parameter. Use the new `timeout` parameter instead. The `timeout` parameter specifies how many seconds the client should wait for the connection, an expected event or a server response.
10 lines
252 B
Python
10 lines
252 B
Python
class UptimeKumaException(Exception):
|
|
"""
|
|
There was an exception that occurred while communicating with Uptime Kuma.
|
|
"""
|
|
|
|
|
|
class Timeout(UptimeKumaException):
|
|
"""
|
|
A timeout has occurred while communicating with Uptime Kuma.
|
|
"""
|