Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/public/uploads/../plugins/summernote/./../pace-progress/../select2-bootstrap4-theme/../bootstrap-slider/../select2/../bootstrap/.././../plugins/fontawesome-free/../flot/././../../../vendor/./fruitcake/../paypal/../webmozart/./../egulias/../././stripe/../iyzico/../graham-campbell/../maatwebsite/excel/src/Exceptions
الملفات الموجودة في هذا الـ Path:
.
..
ConcernConflictException.php
LaravelExcelException.php
NoFilePathGivenException.php
NoFilenameGivenException.php
NoTypeDetectedException.php
RowSkippedException.php
SheetNotFoundException.php
UnreadableFileException.php

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

<?php

namespace Maatwebsite\Excel\Exceptions;

use Exception;
use Throwable;

class UnreadableFileException extends Exception implements LaravelExcelException
{
    /**
     * @param  string  $message
     * @param  int  $code
     * @param  Throwable|null  $previous
     */
    public function __construct(
        $message = 'File could not be read',
        $code = 0,
        Throwable $previous = null
    ) {
        parent::__construct($message, $code, $previous);
    }
}