From a4f639242f9f6221a486e0e91adeb75ba6096f45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ale=C5=A1=20Smodi=C5=A1?= Date: Mon, 24 Aug 2015 19:09:41 +0200 Subject: Split the development into daemon and wsgi_server. Implemented basic infrastructure for daemon (Prolog), and partial support for services in wsgi_server. --- errors/__init__.py | 1 + errors/session.py | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 errors/__init__.py create mode 100644 errors/session.py (limited to 'errors') diff --git a/errors/__init__.py b/errors/__init__.py new file mode 100644 index 0000000..9bad579 --- /dev/null +++ b/errors/__init__.py @@ -0,0 +1 @@ +# coding=utf-8 diff --git a/errors/session.py b/errors/session.py new file mode 100644 index 0000000..d173fbf --- /dev/null +++ b/errors/session.py @@ -0,0 +1,7 @@ +# coding=utf-8 + +class NoSuchSession(Exception): + pass + +class AuthenticationFailed(Exception): + pass -- cgit v1.2.1