Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUmadevi S <uma@mono-cvs.ximian.com>2004-03-08 07:58:58 +0300
committerUmadevi S <uma@mono-cvs.ximian.com>2004-03-08 07:58:58 +0300
commit1a1b52e52d62e9d13178e926190a9836901660b3 (patch)
tree940b6c4746ce2e4bde93ce947445f3a4313d7837 /mcs/class/System.Data/System.Data.SqlTypes
parentcdae6e79b966ed91d4032e7913325a8122007fa2 (diff)
2004-03-08 Umadevi S (sumadevi@novell.com
* SqlTypeException.cs - Added Constructor With (String,exception)2004-03-08 Umadevi S (sumadevi@novell.com * SqlTypeException.cs - Added Constructor With (String,exception)2004-03-08 Umadevi S (sumadevi@novell.com * SqlTypeException.cs - Added Constructor With (String,exception)2004-03-08 Umadevi S (sumadevi@novell.com * SqlTypeException.cs - Added Constructor With (String,exception) svn path=/trunk/mcs/; revision=23789
Diffstat (limited to 'mcs/class/System.Data/System.Data.SqlTypes')
-rw-r--r--mcs/class/System.Data/System.Data.SqlTypes/SqlTypeException.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/mcs/class/System.Data/System.Data.SqlTypes/SqlTypeException.cs b/mcs/class/System.Data/System.Data.SqlTypes/SqlTypeException.cs
index a2a13a0212b..b4599415916 100644
--- a/mcs/class/System.Data/System.Data.SqlTypes/SqlTypeException.cs
+++ b/mcs/class/System.Data/System.Data.SqlTypes/SqlTypeException.cs
@@ -29,5 +29,11 @@ namespace System.Data.SqlTypes {
: base (info, context)
{
}
+
+ public SqlTypeException (string message, Exception inner)
+ : base (message, inner)
+ {
+ }
+
}
}