File "MissingFileUploadsTraitException.php"

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

<?php

namespace Livewire\Exceptions;

class MissingFileUploadsTraitException extends \Exception
{
    use BypassViewHandler;

    public function __construct($component)
    {
        parent::__construct(
            "Cannot handle file upload without [Livewire\WithFileUploads] trait on the [{$component::getName()}] component class."
        );
    }
}