Added experimental module with a base session

This commit is contained in:
2018-08-16 16:57:37 -05:00
parent 2668e47a6f
commit 3b41e18573
3 changed files with 126 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
# -*- coding: cp1252 -*-
import exceptions
class InvalidSessionError(exceptions.Exception): pass
class NonExistentSessionError(exceptions.Exception): pass
class NotLoggedSessionError(exceptions.BaseException): pass
class NotConfiguredSessionError(exceptions.BaseException): pass
class RequireCredentialsSessionError(exceptions.BaseException): pass
class AlreadyAuthorisedError(exceptions.BaseException): pass