1 | <?php |
||
9 | class TableException extends Exception |
||
10 | { |
||
11 | /** |
||
12 | * @param null $message |
||
13 | * |
||
14 | 1 | * @return static |
|
15 | */ |
||
16 | 1 | public static function invalidButtonPosition($message = null) |
|
23 | |||
24 | /** |
||
25 | * @param Client $player |
||
26 | * @param Table $table |
||
27 | * @param string $message |
||
28 | * |
||
29 | * @return static |
||
30 | */ |
||
31 | public static function notRegistered(Client $player, Table $table, $message = null) |
||
38 | |||
39 | } |
||
40 |