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