Implemented Redis Server controller
This commit is contained in:
parent
40bb5e29d0
commit
0c23fdfac2
34 changed files with 226 additions and 3955 deletions
19
src/TamerLib/Exceptions/NoAvailablePortException.php
Normal file
19
src/TamerLib/Exceptions/NoAvailablePortException.php
Normal file
|
@ -0,0 +1,19 @@
|
|||
<?php
|
||||
|
||||
namespace TamerLib\Exceptions;
|
||||
|
||||
use Exception;
|
||||
use Throwable;
|
||||
|
||||
class NoAvailablePortException 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);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue