Raise DiscordServerError for 503 Service Unavailable errors
This commit is contained in:
parent
78c916a486
commit
351a1a1865
@ -241,6 +241,8 @@ class HTTPClient:
|
|||||||
raise Forbidden(r, data)
|
raise Forbidden(r, data)
|
||||||
elif r.status == 404:
|
elif r.status == 404:
|
||||||
raise NotFound(r, data)
|
raise NotFound(r, data)
|
||||||
|
elif r.status == 503:
|
||||||
|
raise DiscordServerError(r, data)
|
||||||
else:
|
else:
|
||||||
raise HTTPException(r, data)
|
raise HTTPException(r, data)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user