Move port range to config. Throw exception if no free port is available within the range

This commit is contained in:
Marcel Pociot
2020-09-08 08:27:55 +02:00
parent cfc0ad92a5
commit f9339c0049
4 changed files with 50 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
<?php
namespace App\Server\Exceptions;
class NoFreePortAvailable extends \Exception
{
}