*/ class PropertyDoesNotExistException extends \Exception { public function __construct($class, $property) { parent::__construct("Class '$class' does not have property '$property'"); } }