1 | <?php |
||
7 | class TargetFileExistsException extends \Exception |
||
8 | { |
||
9 | /** @var string */ |
||
10 | private $targetFilePath; |
||
11 | /** @var string */ |
||
12 | private $templateFilePath; |
||
13 | |||
14 | /** |
||
15 | * @param string $targetFilePath |
||
16 | * @param string $templateFilePath |
||
17 | */ |
||
18 | public function __construct($targetFilePath, $templateFilePath) |
||
25 | |||
26 | /** |
||
27 | * @return string |
||
28 | */ |
||
29 | public function getTargetFilePath() |
||
33 | |||
34 | /** |
||
35 | * @return string |
||
36 | */ |
||
37 | public function getTemplateFilePath() |
||
41 | } |
||
42 |