From 059fd87ef11baffe4fe811faa1309c73a2df06f9 Mon Sep 17 00:00:00 2001
From: catch <6915-catch@users.noreply.drupalcode.org>
Date: Mon, 29 Jul 2024 17:52:08 +0900
Subject: [PATCH] Issue #3457009 by ankitv18, quietone, joachim: Add input
 string to exception message thrown in createConnectionOptionsFromUrl()

---
 core/lib/Drupal/Core/Database/Connection.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/lib/Drupal/Core/Database/Connection.php b/core/lib/Drupal/Core/Database/Connection.php
index db2020bc4de3..7a9de46a7d41 100644
--- a/core/lib/Drupal/Core/Database/Connection.php
+++ b/core/lib/Drupal/Core/Database/Connection.php
@@ -1322,7 +1322,7 @@ public function __sleep(): array {
   public static function createConnectionOptionsFromUrl($url, $root) {
     $url_components = parse_url($url);
     if (!isset($url_components['scheme'], $url_components['host'], $url_components['path'])) {
-      throw new \InvalidArgumentException('Minimum requirement: driver://host/database');
+      throw new \InvalidArgumentException("The database connection URL '$url' is invalid. The minimum requirement is: 'driver://host/database'");
     }
 
     $url_components += [
-- 
GitLab