| 1234567891011121314151617181920212223242526272829303132 |
- <?php namespace GO;
- use Exception;
- class FailedJob
- {
- /**
- * @var Job
- */
- private $job;
- /**
- * @var Exception
- */
- private $exception;
- public function __construct(Job $job, Exception $exception)
- {
- $this->job = $job;
- $this->exception = $exception;
- }
- public function getJob(): Job
- {
- return $this->job;
- }
- public function getException(): Exception
- {
- return $this->exception;
- }
- }
|