Total Complexity | 1 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
16 | class NotPublicGetterPropertyException extends AbstractPropertyNotThingableException |
||
17 | { |
||
18 | /** |
||
19 | * Wraps to AbstractPropertyNotThingableException::__construct(). |
||
20 | * |
||
21 | * @param string $className name of the class on which the $property is not a public getter |
||
22 | * @param string $property name of the property which is not a public getter |
||
23 | * @param int $code @see Exception::__construct() |
||
24 | * @param Throwable|null $previous @see Exception::__construct() |
||
25 | */ |
||
26 | 1 | public function __construct( |
|
41 |