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/EventHandlerDoesNotExist.php
<?php

namespace Livewire\Exceptions;

class EventHandlerDoesNotExist extends \Exception
{
    public function __construct(public readonly string $eventName)
    {
        parent::__construct('Handler for event ' . $eventName . ' does not exist');
    }
}