| 1 | <?php |
||
| 12 | class GuardedPropertyException extends RuntimeException { |
||
| 13 | /** |
||
| 14 | * Property that threw. |
||
| 15 | * |
||
| 16 | * @var string |
||
| 17 | */ |
||
| 18 | public $property; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Construct a GuardedPropertyException. |
||
| 22 | * @param string $property Property that was guarded. |
||
| 23 | * @param mixed[] $args Parent args. |
||
| 24 | */ |
||
| 25 | public function __construct( $property, ...$args ) { |
||
| 30 | } |
||
| 31 |