diff options
author | Aleš Smodiš <aless@guru.si> | 2015-09-14 14:49:54 +0200 |
---|---|---|
committer | Aleš Smodiš <aless@guru.si> | 2015-09-14 14:49:54 +0200 |
commit | afdb3c0b28715b3d9a0982e4e0504a0cbcf11e70 (patch) | |
tree | d052125c6fc4fb4803b10dd20d3c24fc3a2711f9 /errors | |
parent | d82013c214021d6e5480d18105760fa70cfc708b (diff) |
Reimplemented communication with the client side.
* Implemented a node web server supporting asynchronous websocket and long-polling communication with clients.
* Implemented TCP communication between python middleware and node web server.
Diffstat (limited to 'errors')
-rw-r--r-- | errors/session.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/errors/session.py b/errors/session.py index d173fbf..c5170d8 100644 --- a/errors/session.py +++ b/errors/session.py @@ -5,3 +5,6 @@ class NoSuchSession(Exception): class AuthenticationFailed(Exception): pass + +class RequestProcessingError(Exception): + pass
\ No newline at end of file |