StackFormation\Exception\MissingEnvVarException::__construct PHP Метод

__construct() публичный Метод

public __construct ( $varName, $code, Exception $previous = null )
$previous Exception
    public function __construct($varName, $code = 0, \Exception $previous = null)
    {
        $this->envVar = $varName;
        $message = "Environment variable '{$varName}' not found";
        parent::__construct($message, $code, $previous);
    }
MissingEnvVarException