|
|
@@ -1,7 +1,13 @@
|
|
|
-// System.Xml.Xsl.XsltCompileException
|
|
|
-//
|
|
|
-// Author: Tim Coleman <[email protected]>
|
|
|
-// (C) Copyright 2002 Tim Coleman
|
|
|
+//
|
|
|
+// System.Xml.Xsl.XsltCompileException.cs
|
|
|
+//
|
|
|
+// Authors:
|
|
|
+// Tim Coleman ([email protected])
|
|
|
+// Andreas Nahr ([email protected])
|
|
|
+//
|
|
|
+// (C) Copyright 2002 Tim Coleman
|
|
|
+// (C) 2003 Andreas Nahr
|
|
|
+//
|
|
|
|
|
|
using System;
|
|
|
using System.Runtime.Serialization;
|
|
|
@@ -19,21 +25,16 @@ namespace System.Xml.Xsl
|
|
|
|
|
|
#region Constructors
|
|
|
|
|
|
- [MonoTODO]
|
|
|
protected XsltCompileException (SerializationInfo info, StreamingContext context )
|
|
|
: base (info, context)
|
|
|
{
|
|
|
}
|
|
|
|
|
|
- [MonoTODO]
|
|
|
- // I don't think this base() call is right, but what
|
|
|
- // should the message be for XsltException?
|
|
|
public XsltCompileException (Exception inner, String sourceUri, int lineNumber, int linePosition)
|
|
|
- : base (sourceUri, inner)
|
|
|
+ : base (Locale.GetText ("XSLT compile error"), inner, lineNumber, linePosition, sourceUri)
|
|
|
{
|
|
|
}
|
|
|
|
|
|
-
|
|
|
#endregion
|
|
|
|
|
|
#region Properties
|