From 373b85329d3095e367b3c7d170042a42b9582065 Mon Sep 17 00:00:00 2001 From: "Marc G. Fournier" Date: Fri, 20 Feb 1998 13:11:26 +0000 Subject: [PATCH] Missign a comma... From: AA van Raalte --- src/interfaces/jdbc/postgresql/Connection.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interfaces/jdbc/postgresql/Connection.java b/src/interfaces/jdbc/postgresql/Connection.java index 8dd980e2f06..75515da474e 100644 --- a/src/interfaces/jdbc/postgresql/Connection.java +++ b/src/interfaces/jdbc/postgresql/Connection.java @@ -145,7 +145,7 @@ public class Connection implements java.sql.Connection if(info.getProperty("user")==null) throw new SQLException("The user property is missing. It is mandatory."); if(info.getProperty("password")==null) - throw new SQLException("The password property is missing. It is mandatory.") + throw new SQLException("The password property is missing. It is mandatory."); this_driver = d; this_url = new String(url); -- 2.39.5