mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-29 17:47:14 +02:00
Handle HTTP Client Error as UserSideException
This commit is contained in:
@ -27,7 +27,7 @@ from platformio.exception import PlatformioException, UserSideException
|
||||
__default_requests_timeout__ = (10, None) # (connect, read)
|
||||
|
||||
|
||||
class HTTPClientError(PlatformioException):
|
||||
class HTTPClientError(UserSideException):
|
||||
def __init__(self, message, response=None):
|
||||
super().__init__()
|
||||
self.message = message
|
||||
|
Reference in New Issue
Block a user