Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/public/uploads/../.././vendor/laravel/../maatwebsite/excel/src/././Facades/../Events
الملفات الموجودة في هذا الـ Path:
.
..
AfterImport.php
AfterSheet.php
BeforeExport.php
BeforeImport.php
BeforeSheet.php
BeforeWriting.php
Event.php
ImportFailed.php

مشاهدة ملف: ImportFailed.php

<?php

namespace Maatwebsite\Excel\Events;

use Throwable;

class ImportFailed
{
    /**
     * @var Throwable
     */
    public $e;

    /**
     * @param  Throwable  $e
     */
    public function __construct(Throwable $e)
    {
        $this->e = $e;
    }

    /**
     * @return Throwable
     */
    public function getException(): Throwable
    {
        return $this->e;
    }
}