1 | <?php |
||
13 | class UnknownTopicException extends \OutOfBoundsException |
||
14 | { |
||
15 | /** |
||
16 | * @var string name of the topic |
||
17 | */ |
||
18 | protected $topicName; |
||
19 | |||
20 | /** |
||
21 | * @param string $topicName |
||
22 | */ |
||
23 | public function __construct($topicName) |
||
29 | |||
30 | /** |
||
31 | * @param string $topicName |
||
32 | */ |
||
33 | protected function setTopicName($topicName) |
||
37 | |||
38 | /** |
||
39 | * @return string the topic name |
||
40 | */ |
||
41 | public function getTopicName() |
||
45 | } |
||
46 |