From 33370e42f11d7cb55b0d7029cc5516f1370bbca4 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Tue, 20 Nov 2018 07:44:09 +0100 Subject: XEP-0363: Use a specific exception for HTTP errors --- slixmpp/plugins/xep_0363/http_upload.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/slixmpp/plugins/xep_0363/http_upload.py b/slixmpp/plugins/xep_0363/http_upload.py index 79a42412..266fc656 100644 --- a/slixmpp/plugins/xep_0363/http_upload.py +++ b/slixmpp/plugins/xep_0363/http_upload.py @@ -30,6 +30,10 @@ class UploadServiceNotFound(FileUploadError): class FileTooBig(FileUploadError): pass +class HTTPError(FileUploadError): + def __str__(self): + return 'Could not upload file: %d (%s)' % (self.args[0], self.args[1]) + class XEP_0363(BasePlugin): ''' This plugin only supports Python 3.5+ ''' @@ -149,7 +153,7 @@ class XEP_0363(BasePlugin): headers=headers, timeout=timeout) if response.status >= 400: - raise FileUploadError("could not upload file: %d (%s)" % (response.status, await response.text())) + raise HTTPError(response.status, await response.text()) log.info('Response code: %d (%s)', response.status, await response.text()) response.close() return slot['get']['url'] -- cgit v1.2.3