31 lines
		
	
	
		
			527 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			527 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Exceptions;
 | 
						|
 | 
						|
use Illuminate\Support\Arr;
 | 
						|
use Throwable;
 | 
						|
 | 
						|
class CsvImportException extends \RuntimeException
 | 
						|
{
 | 
						|
    /** @var string[] */
 | 
						|
    private $errors;
 | 
						|
 | 
						|
    /**
 | 
						|
     * CsvImportException constructor.
 | 
						|
     * @param string[] $errors
 | 
						|
     */
 | 
						|
    public function __construct(...$errors)
 | 
						|
    {
 | 
						|
        parent::__construct(Arr::first($errors));
 | 
						|
        $this->errors = $errors;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @return string[]
 | 
						|
     */
 | 
						|
    public function getErrors(): array
 | 
						|
    {
 | 
						|
        return $this->errors;
 | 
						|
    }
 | 
						|
}
 |