Remove NoMoreItems

This commit is contained in:
James Hilton-Balfe
2022-03-06 23:44:18 +00:00
committed by GitHub
parent b77cf500a2
commit 01906f37f1
3 changed files with 3 additions and 10 deletions

View File

@ -40,7 +40,6 @@ if TYPE_CHECKING:
__all__ = (
'DiscordException',
'ClientException',
'NoMoreItems',
'GatewayNotFound',
'HTTPException',
'Forbidden',
@ -72,12 +71,6 @@ class ClientException(DiscordException):
pass
class NoMoreItems(DiscordException):
"""Exception that is raised when an async iteration operation has no more items."""
pass
class GatewayNotFound(DiscordException):
"""An exception that is raised when the gateway for Discord could not be found"""