static-php-cli/src/StaticPHP/Exception/EnvironmentException.php
crazywhalecc 14bfb4198a
v3 base
2025-11-30 15:35:04 +08:00

26 lines
573 B
PHP

<?php
declare(strict_types=1);
namespace StaticPHP\Exception;
/**
* EnvironmentException is thrown when there is an issue with the environment setup,
* such as missing dependencies or incorrect configurations.
*/
class EnvironmentException extends SPCException
{
public function __construct(string $message, private readonly ?string $solution = null)
{
parent::__construct($message);
}
/**
* Returns the solution for the environment issue.
*/
public function getSolution(): ?string
{
return $this->solution;
}
}