D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
dateitor
/
public_html
/
vendor
/
livewire
/
livewire
/
src
/
Exceptions
/
Filename :
PropertyNotFoundException.php
back
Copy
<?php namespace Livewire\Exceptions; class PropertyNotFoundException extends \Exception { use BypassViewHandler; public function __construct($property, $component) { parent::__construct( "Property [\${$property}] not found on component: [{$component}]" ); } }