File "PropertyNotFoundException.php"

Full Path: /home/fundopuh/trader.fxex.org/vendor/livewire/livewire/src/Exceptions/PropertyNotFoundException.php
File size: 307 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Livewire\Exceptions;

class PropertyNotFoundException extends \Exception
{
    use BypassViewHandler;

    public function __construct($property, $component)
    {
        parent::__construct(
            "Property [\${$property}] not found on component: [{$component}]"
        );
    }
}