15 lines
333 B
PHP
15 lines
333 B
PHP
<?php
|
|
namespace Incoviba\Exception\MQTT;
|
|
|
|
use Throwable;
|
|
use Incoviba\Exception\MQTT;
|
|
|
|
class RemoveJob extends MQTT
|
|
{
|
|
public function __construct(int $jobId, ?Throwable $previous = null)
|
|
{
|
|
$message = "Could not remove job {$jobId}";
|
|
$code = 13;
|
|
parent::__construct($message, $code, $previous);
|
|
}
|
|
} |