| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- //
- // 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;
- using System.Xml.XPath;
- namespace System.Xml.Xsl
- {
- [Serializable]
- public class XsltCompileException : XsltException
- {
- #region Constructors
- protected XsltCompileException (SerializationInfo info, StreamingContext context )
- : base (info, context)
- {
- }
- public XsltCompileException (Exception inner, String sourceUri, int lineNumber, int linePosition)
- : base (Locale.GetText ("XSLT compile error"), inner, lineNumber, linePosition, sourceUri)
- {
- }
- internal XsltCompileException (string message, Exception innerException, XPathNavigator nav)
- : base (message, innerException, nav)
- {
- }
- #endregion
- #region Properties
- public override string Message {
- get { return base.Message; }
- }
- #endregion
- #region Methods
- public override void GetObjectData (SerializationInfo info, StreamingContext context)
- {
- base.GetObjectData (info, context);
- }
- #endregion
- }
- }
|