| 1 | <?php |
||
| 7 | class ImportRunningException extends \RuntimeException |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var Import |
||
| 11 | */ |
||
| 12 | protected $import; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @param Import $import |
||
| 16 | * @param string $message |
||
| 17 | * @param int $code |
||
| 18 | * @param \Exception $previous |
||
| 19 | */ |
||
| 20 | public function __construct(Import $import, $message = null, $code = 0, \Exception $previous = null) |
||
| 26 | } |
||
| 27 |