19 lines
458 B
PHP
19 lines
458 B
PHP
![]() |
<?php
|
||
|
|
||
|
namespace Tamer\Exceptions;
|
||
|
|
||
|
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);
|
||
|
}
|
||
|
}
|