HOME


Mini Shell 1.0
DIR: /home/cardxfeb/public_html/vendor/livewire/livewire/src/Exceptions/
Upload File :
Current File : /home/cardxfeb/public_html/vendor/livewire/livewire/src/Exceptions/NonPublicComponentMethodCall.php
<?php

namespace Livewire\Exceptions;

class NonPublicComponentMethodCall extends \Exception
{
    use BypassViewHandler;

    public function __construct($method)
    {
        parent::__construct('Component method not found: ['.$method.']');
    }
}