pixelfederation/swoole-bundle

View on GitHub
src/Server/Exception/IllegalInitializationException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace K911\Swoole\Server\Exception;

/**
 * @internal
 */
final class IllegalInitializationException extends \RuntimeException
{
    public static function make(): self
    {
        return new self('Swoole HTTP Server has been already initialized. Cannot attach server or listeners multiple times.');
    }
}