diff --git a/core/lib/Drupal/Core/Database/Connection.php b/core/lib/Drupal/Core/Database/Connection.php
index db2020bc4de3c28ee3bdf1afc8a390c2f57fc435..7a9de46a7d410ebc792743bf136adedbfd5f0b7c 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 += [