| 1 | <?php |
||
| 7 | class UnknownTopicException extends \OutOfBoundsException |
||
| 8 | { |
||
| 9 | |||
| 10 | /** |
||
| 11 | * @var string name of the topic |
||
| 12 | */ |
||
| 13 | protected $topicName; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @param string $topicName |
||
| 17 | */ |
||
| 18 | public function __construct($topicName) |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param string $topicName |
||
| 27 | */ |
||
| 28 | protected function setTopicName($topicName) |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @return string the topic name |
||
| 35 | */ |
||
| 36 | public function getTopicName() |
||
| 40 | } |