Bläddra i källkod

2004-08-30 Atsushi Enomoto <[email protected]>

	* XsltException.cs : added NET_2_0 constructors too.

svn path=/trunk/mcs/; revision=33036
Atsushi Eno 21 år sedan
förälder
incheckning
07cf99f854

+ 4 - 0
mcs/class/System.XML/System.Xml.Xsl/ChangeLog

@@ -1,3 +1,7 @@
+2004-08-30  Atsushi Enomoto  <[email protected]>
+
+	* XsltException.cs : added NET_2_0 constructors too.
+
 2004-08-30  Atsushi Enomoto  <[email protected]>
 
 	* XsltCompileException.cs : added NET_2_0 constructors.

+ 12 - 0
mcs/class/System.XML/System.Xml.Xsl/XsltException.cs

@@ -49,6 +49,18 @@ namespace System.Xml.Xsl
 
 		#region Constructors
 
+#if NET_2_0
+		public XsltException ()
+			: base (String.Empty, null)
+		{
+		}
+
+		public XsltException (string message)
+			: base (message, null)
+		{
+		}
+#endif
+
 		public XsltException (string message, Exception innerException)
 			: base (message, innerException)
 		{