Author: anagappan
Date: 2007-06-21 09:15:51 -0400 (Thu, 21 Jun 2007)
New Revision: 80470

Modified:
   trunk/mcs/class/System.Data/System.Data.Common/DbConnectionStringBuilder.cs
Log:
2007-06-21  Nagappan A  <[EMAIL PROTECTED]>

        * DbConnectionStringBuilder.cs (Add): Fixed exception error message.



Modified: 
trunk/mcs/class/System.Data/System.Data.Common/DbConnectionStringBuilder.cs
===================================================================
--- trunk/mcs/class/System.Data/System.Data.Common/DbConnectionStringBuilder.cs 
2007-06-21 13:13:51 UTC (rev 80469)
+++ trunk/mcs/class/System.Data/System.Data.Common/DbConnectionStringBuilder.cs 
2007-06-21 13:15:51 UTC (rev 80470)
@@ -174,7 +174,7 @@
                        if (keyword == null || keyword.Trim () == "")
                                throw new ArgumentException ("Keyword should 
not be emtpy");
                        if (value == null)
-                               throw new ArgumentException ("Keyword not 
supported", keyword);
+                               throw new ArgumentException ("Value should not 
be null");
                         if (ContainsKey (keyword)) {
                                 _dictionary [keyword] = value;
                         } else {

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to