%PDF- %PDF-
Direktori : /var/www/html/kpk/api/vendor/maatwebsite/excel/src/Exceptions/ |
Current File : /var/www/html/kpk/api/vendor/maatwebsite/excel/src/Exceptions/NoFilePathGivenException.php |
<?php namespace Maatwebsite\Excel\Exceptions; use Throwable; use InvalidArgumentException; class NoFilePathGivenException extends InvalidArgumentException implements LaravelExcelException { /** * @param string $message * @param int $code * @param Throwable|null $previous */ public function __construct( $message = 'A filepath needs to be passed in order to store the export', $code = 0, Throwable $previous = null ) { parent::__construct($message, $code, $previous); } }