Raise DiscordServerError for 503 Service Unavailable errors

This commit is contained in:
Harmon
2020-11-21 22:16:40 -05:00
committed by Rapptz
parent 78c916a486
commit 351a1a1865
+2
View File
@@ -241,6 +241,8 @@ class HTTPClient:
raise Forbidden(r, data)
elif r.status == 404:
raise NotFound(r, data)
elif r.status == 503:
raise DiscordServerError(r, data)
else:
raise HTTPException(r, data)