diff --git a/CHANGELOG.md b/CHANGELOG.md index 807f169..a00846b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,9 @@ - `Innmind\Server\Status\Exception\EmptyUserNotAllowed` - `Innmind\Server\Status\Exception\LoadAverageCannotBeNegative` - `Innmind\Server\Status\Exception\DomainException` +- `Innmind\Server\Status\Exception\UnsupportedOperatingSystem` +- `Innmind\Server\Status\Exception\RuntimeException` +- `Innmind\Server\Status\Exception\Exception` ## 4.1.1 - 2024-09-30 diff --git a/src/Exception/Exception.php b/src/Exception/Exception.php deleted file mode 100644 index 90cfea4..0000000 --- a/src/Exception/Exception.php +++ /dev/null @@ -1,8 +0,0 @@ - new OSX($clock, $control, $path), + 'Linux' => new Linux($clock, $control), + default => throw new \LogicException('Unsupported operating system '.\PHP_OS), + }; } }