buildings

This commit is contained in:
2020-05-27 20:08:12 +02:00
parent 2b4d35fc79
commit 40e94c0c43
2 changed files with 111 additions and 12 deletions

View File

@@ -1,4 +1,8 @@
class TooManyPlayers(Exception):
class TooMany(Exception):
pass
class TooManyPlayers(TooMany):
pass
@@ -6,6 +10,10 @@ class NotEnough(Exception):
pass
class MustBeEqualAmounts(Exception):
pass
class Argument(Exception):
pass
@@ -16,3 +24,11 @@ class DidntFind(Exception):
class NoOwner(Exception):
pass
class CantMortgage(Exception):
pass
class CantBuyBuildings(Exception):
pass