Files
aso/app/Exceptions/ImportRowException.php
Server D3 Linksehat 1bf608b1ed Server 103 Commit
2024-07-18 16:05:33 +07:00

23 lines
403 B
PHP
Executable File

<?php
namespace App\Exceptions;
use Exception;
use Throwable;
class ImportRowException extends Exception
{
protected $data = null;
public function __construct($message, $code = 0, Throwable $previous = null, $data)
{
parent::__construct($message, (int)$code, $previous);
$this->data = $data;
}
public function getData()
{
return $this->data;
}
}