for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Lamoda\MultiEnv\Decorator\Exception;
use Lamoda\MultiEnv\Exception\EnvProviderExceptionInterface;
final class EnvProviderDecoratorException extends \RuntimeException implements EnvProviderExceptionInterface
{
public static function becauseDecoratorNotInitialised(): self
return new self('Decorator not initialised. Run init method first');
}