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 | * |
||
23 | * @param string $property Property that was guarded. |
||
24 | */ |
||
25 | 9 | public function __construct( $property ) { |
|
30 | } |
||
31 |