src/Bridge/Symfony/Bundle/Exception/PidFileNotAccessibleException.php
<?php
declare(strict_types=1);
namespace K911\Swoole\Bridge\Symfony\Bundle\Exception;
/**
* @internal
*/
final class PidFileNotAccessibleException extends \RuntimeException
{
public static function forFile(string $pidFile): self
{
throw new self(\sprintf('Could not access pid file "%s".', $pidFile));
}
}