2023-02-05 17:24:22 -05:00
|
|
|
<?php
|
|
|
|
|
2023-02-05 17:27:32 -05:00
|
|
|
namespace TamerLib\Exceptions;
|
2023-02-05 17:24:22 -05:00
|
|
|
|
|
|
|
use Exception;
|
|
|
|
use Throwable;
|
|
|
|
|
|
|
|
class UnsupervisedWorkerException extends Exception
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @param string $message
|
|
|
|
* @param int $code
|
|
|
|
* @param Throwable|null $previous
|
|
|
|
*/
|
|
|
|
public function __construct(string $message = "", int $code = 0, ?Throwable $previous = null)
|
|
|
|
{
|
|
|
|
parent::__construct($message, $code, $previous);
|
|
|
|
}
|
|
|
|
}
|