2002-09-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / class / System.XML / System.Xml.XPath / XPathException.cs
1 //
2 // System.Xml.XPath.XPathException
3 //
4 // Author:
5 //   Tim Coleman (tim@timcoleman.com)
6 //
7 // (C) Copyright 2002 Tim Coleman
8 //
9
10 using System.Runtime.Serialization;
11
12 namespace System.Xml.XPath
13 {
14         [Serializable]
15         public class XPathException : SystemException
16         {
17                 #region Fields
18                 
19                 string message;
20
21                 #endregion
22                 
23                 #region Constructors
24
25                 [MonoTODO]
26                 protected XPathException (SerializationInfo info, StreamingContext context)
27                 {
28                         throw new NotImplementedException ();
29                 }
30
31                 [MonoTODO]
32                 public XPathException (string message, Exception innerException)
33                 {
34                         throw new NotImplementedException ();
35                 }
36
37                 #endregion
38
39                 #region Properties
40                 
41                 public override string Message {
42                         get { return message; }
43                 }
44
45                 #endregion
46
47                 #region Methods
48
49                 [MonoTODO]
50                 public override void GetObjectData (SerializationInfo info, StreamingContext context)
51                 {
52                         throw new NotImplementedException ();
53                 }
54                 
55                 #endregion
56         }
57 }