| 1 | <?php | ||
| 7 | class PropertyNotFoundException extends Exception | ||
| 8 | { | ||
| 9 | /** | ||
| 10 | * Property Not Found Exception. | ||
| 11 | * | ||
| 12 | * @param string $property | ||
| 13 | * @param string $caller | ||
| 14 | * @param \Exception $previous | ||
| 15 | */ | ||
| 16 | 12 | public function __construct($property = '', $caller = '', Exception $previous = null) | |
| 21 | } | ||
| 22 |