File "MethodNotFoundException.php"

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

<?php

namespace Livewire\Exceptions;

class MethodNotFoundException extends \Exception
{
    use BypassViewHandler;

    public function __construct($method, $component)
    {
        parent::__construct(
            "Unable to call component method. Public method [{$method}] not found on component: [{$component}]"
        );
    }
}