Move websocket hub to the new gateway.

This commit is contained in:
Rapptz
2015-08-26 22:26:06 -04:00
parent af5292872b
commit 29b71a7e88
3 changed files with 15 additions and 3 deletions

View File

@ -31,3 +31,7 @@ class InvalidEventName(Exception):
class InvalidDestination(Exception):
"""Thrown when the destination from :meth:`Client.send_message` is invalid."""
pass
class GatewayNotFound(Exception):
"""Thrown when the gateway hub for the :class:`Client` websocket is not found."""
pass