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

XsltCompileException.cs « System.Xml.Xsl « System.XML « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7cd4011b763ac5e0f862fec59f07852e883edb49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// 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
	}
}