**** Merged from MCS ****
[mono-project.git] / mcs / class / Mono.Xml.Ext / Mono.Xml.XPath2 / XmlQueryException.cs
blob00e967cc32d62569eb37c538d4f7ccb3ff418354
1 //
2 // System.Xml.Query.XmlQueryException
3 //
4 // Author:
5 // Tim Coleman (tim@timcoleman.com)
6 //
7 // Copyright (C) Tim Coleman, 2003
8 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 //
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 //
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 #if NET_2_0
33 using System;
34 using System.Runtime.Serialization;
36 namespace System.Xml.Query
38 [Serializable]
39 public class XmlQueryException : SystemException
41 #region Constructors
43 [MonoTODO]
44 protected XmlQueryException (SerializationInfo info, StreamingContext context)
45 : base (info, context)
47 throw new NotImplementedException ();
50 public XmlQueryException ()
51 : base ("An XML Query Exception has occurred.")
55 public XmlQueryException (string res)
56 : this (res, null, null, null)
60 public XmlQueryException (string resource, Exception exception)
61 : this (resource, null, null, exception)
65 internal XmlQueryException (string message, IXmlLineInfo lineInfo, string sourceUri, Exception innerException)
66 : base (BuildMessage (message, lineInfo, sourceUri), innerException)
70 static string BuildMessage (string message, IXmlLineInfo li, string sourceUri)
72 if (li != null && li.HasLineInfo ()) {
73 message = String.Format ("{0}. Location: {1} ({2}, {3}).", message, sourceUri, li.LineNumber, li.LinePosition);
75 else if (sourceUri != null)
76 message = String.Format ("{0}. Location: {1}", message, sourceUri);
77 return message;
80 #endregion // Constructors
82 #region Properties
84 [MonoTODO]
85 public int LineNumber {
86 get { throw new NotImplementedException (); }
89 [MonoTODO]
90 public int LinePosition {
91 get { throw new NotImplementedException (); }
94 [MonoTODO]
95 public string SourceUri {
96 get { throw new NotImplementedException(); }
99 #endregion // Properties
101 #region Methods
103 [MonoTODO]
104 public override void GetObjectData (SerializationInfo info, StreamingContext context)
106 throw new NotImplementedException();
108 #endregion // Methods
112 #endif // NET_2_0