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

XPathException.cs « System.Xml.XPath « System.XML « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4817111fd9b39dd474121f213d591950a6cde534 (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
57
//
// System.Xml.XPath.XPathException
//
// Author:
//   Tim Coleman (tim@timcoleman.com)
//
// (C) Copyright 2002 Tim Coleman
//

using System.Runtime.Serialization;

namespace System.Xml.XPath
{
	[Serializable]
	public class XPathException : SystemException
	{
		#region Fields
		
		string message;

		#endregion
		
		#region Constructors

		[MonoTODO]
		protected XPathException (SerializationInfo info, StreamingContext context)
		{
			throw new NotImplementedException ();
		}

		[MonoTODO]
		public XPathException (string message, Exception innerException)
		{
			throw new NotImplementedException ();
		}

		#endregion

		#region Properties
		
		public override string Message {
			get { return message; }
		}

		#endregion

		#region Methods

		[MonoTODO]
		public override void GetObjectData (SerializationInfo info, StreamingContext context)
		{
			throw new NotImplementedException ();
		}
		
		#endregion
	}
}