This commit is contained in:
2020-05-21 00:10:31 +02:00
commit 0c23f99667
2 changed files with 771 additions and 0 deletions

14
exceptions.py Normal file
View File

@@ -0,0 +1,14 @@
class TooManyPlayers(Exception):
pass
class NotEnough(Exception):
pass
class Argument(Exception):
pass
class DidntFind(Exception):
pass