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:
Diffstat (limited to 'mcs/class/System.XML/System.Xml.Xsl/XsltCompileException.cs')
-rw-r--r--mcs/class/System.XML/System.Xml.Xsl/XsltCompileException.cs56
1 files changed, 0 insertions, 56 deletions
diff --git a/mcs/class/System.XML/System.Xml.Xsl/XsltCompileException.cs b/mcs/class/System.XML/System.Xml.Xsl/XsltCompileException.cs
deleted file mode 100644
index 7cd4011b763..00000000000
--- a/mcs/class/System.XML/System.Xml.Xsl/XsltCompileException.cs
+++ /dev/null
@@ -1,56 +0,0 @@
-// System.Xml.Xsl.XsltCompileException
-//
-// Author: Tim Coleman <tim@timcoleman.com>
-// (C) Copyright 2002 Tim Coleman
-
-using System;
-using System.Runtime.Serialization;
-
-namespace System.Xml.Xsl
-{
- [Serializable]
- public class XsltCompileException : XsltException
- {
- #region Fields
-
- string message;
-
- #endregion
-
- #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)
- {
- }
-
-
- #endregion
-
- #region Properties
-
- public override string Message {
- get { return message; }
- }
-
- #endregion
-
- #region Methods
-
- public override void GetObjectData (SerializationInfo info, StreamingContext context)
- {
- base.GetObjectData (info, context);
- }
-
- #endregion
- }
-}