1 | <?php declare(strict_types=1); |
||
9 | class ScriptNotFoundException extends \RuntimeException |
||
10 | { |
||
11 | /** |
||
12 | * @var string |
||
13 | */ |
||
14 | private $scriptName; |
||
15 | |||
16 | /** |
||
17 | * @param string $scriptName |
||
18 | * |
||
19 | * @return self |
||
20 | */ |
||
21 | public function setScriptName(string $scriptName): self |
||
27 | |||
28 | /** |
||
29 | * @return string |
||
30 | */ |
||
31 | public function getScriptName(): string |
||
35 | } |
||
36 |