mirror of
https://github.com/crmeb/CRMEB.git
synced 2026-03-18 19:53:47 +00:00
25 lines
406 B
PHP
25 lines
406 B
PHP
<?php
|
|
|
|
namespace think\queue\event;
|
|
|
|
use think\queue\Job;
|
|
|
|
class JobFailed
|
|
{
|
|
/** @var string */
|
|
public $connection;
|
|
|
|
/** @var Job */
|
|
public $job;
|
|
|
|
/** @var \Exception */
|
|
public $exception;
|
|
|
|
public function __construct($connection, $job, $exception)
|
|
{
|
|
$this->connection = $connection;
|
|
$this->job = $job;
|
|
$this->exception = $exception;
|
|
}
|
|
}
|