Coverage for exceptions.py : 100%
Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1class TooMany(Exception):
2 pass
5class TooManyPlayers(TooMany):
6 pass
9class NotEnough(Exception):
10 pass
13class NotEnoughPlayers(NotEnough):
14 pass
17class MustBeEqualAmounts(Exception):
18 pass
21class Argument(Exception):
22 pass
25class DidntFind(Exception):
26 pass
29class NoOwner(Exception):
30 pass
33class CantMortgage(Exception):
34 pass
37class CantBuyBuildings(Exception):
38 pass