19 lines
225 B
Python
19 lines
225 B
Python
class BaseError(Exception):
|
|
...
|
|
|
|
|
|
class PositionOutOfBounds(BaseError):
|
|
...
|
|
|
|
|
|
class Collision(BaseError):
|
|
...
|
|
|
|
|
|
class GameLockForMovement(BaseError):
|
|
...
|
|
|
|
|
|
class PurchaseForbiddenForPlayer(BaseError):
|
|
...
|