1 | <?php |
||
20 | class UndefinedCommandException extends OutOfBoundsException implements TelnetExceptionInterface |
||
21 | { |
||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | protected $command; |
||
26 | |||
27 | /** |
||
28 | * @param string $command |
||
29 | * @param Exception $previous |
||
30 | */ |
||
31 | 1 | public function __construct($command, Exception $previous = null) |
|
37 | |||
38 | /** |
||
39 | * @return string |
||
40 | */ |
||
41 | public function getCommand() |
||
45 | } |
||
46 |