Ausgabe der neuen DB Einträge
This commit is contained in:
parent
bad48e1627
commit
cfbbb9ee3d
2399 changed files with 843193 additions and 43 deletions
34
venv/lib/python3.9/site-packages/twisted/words/ewords.py
Normal file
34
venv/lib/python3.9/site-packages/twisted/words/ewords.py
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
# -*- test-case-name: twisted.words.test -*-
|
||||
# Copyright (c) Twisted Matrix Laboratories.
|
||||
# See LICENSE for details.
|
||||
|
||||
"""Exception definitions for Words
|
||||
"""
|
||||
|
||||
class WordsError(Exception):
|
||||
def __str__(self):
|
||||
return self.__class__.__name__ + ': ' + Exception.__str__(self)
|
||||
|
||||
class NoSuchUser(WordsError):
|
||||
pass
|
||||
|
||||
|
||||
class DuplicateUser(WordsError):
|
||||
pass
|
||||
|
||||
|
||||
class NoSuchGroup(WordsError):
|
||||
pass
|
||||
|
||||
|
||||
class DuplicateGroup(WordsError):
|
||||
pass
|
||||
|
||||
|
||||
class AlreadyLoggedIn(WordsError):
|
||||
pass
|
||||
|
||||
__all__ = [
|
||||
'WordsError', 'NoSuchUser', 'DuplicateUser',
|
||||
'NoSuchGroup', 'DuplicateGroup', 'AlreadyLoggedIn',
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue