Total Complexity | 1 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
31 | class SettingValueNotFoundException extends RuntimeException implements SettingException |
||
32 | { |
||
33 | /** |
||
34 | * Construct instance using setting name |
||
35 | * |
||
36 | * @param string $name |
||
37 | * @param Throwable|null $prior |
||
38 | * @param int $code |
||
39 | * @return static |
||
40 | */ |
||
41 | 12 | public static function fromName(string $name, ?Throwable $prior = null, int $code = 0) |
|
47 |