[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / class / Mono.Xml.Ext / Mono.Xml.XPath2 / XmlQueryException.cs
blobe087c537748e058a949319daf55b30e48241c28d
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.
32 using System;
33 using System.Runtime.Serialization;
35 namespace System.Xml.Query
37 [Serializable]
38 public class XmlQueryException : SystemException
40 #region Constructors
42 [MonoTODO]
43 protected XmlQueryException (SerializationInfo info, StreamingContext context)
44 : base (info, context)
46 throw new NotImplementedException ();
49 public XmlQueryException ()
50 : base ("An XML Query Exception has occurred.")
54 public XmlQueryException (string res)
55 : this (res, null, null, null)
59 public XmlQueryException (string resource, Exception exception)
60 : this (resource, null, null, exception)
64 internal XmlQueryException (string message, IXmlLineInfo lineInfo, string sourceUri, Exception innerException)
65 : base (BuildMessage (message, lineInfo, sourceUri), innerException)
69 static string BuildMessage (string message, IXmlLineInfo li, string sourceUri)
71 if (li != null && li.HasLineInfo ()) {
72 message = String.Format ("{0}. Location: {1} ({2}, {3}).", message, sourceUri, li.LineNumber, li.LinePosition);
74 else if (sourceUri != null)
75 message = String.Format ("{0}. Location: {1}", message, sourceUri);
76 return message;
79 #endregion // Constructors
81 #region Properties
83 [MonoTODO]
84 public int LineNumber {
85 get { throw new NotImplementedException (); }
88 [MonoTODO]
89 public int LinePosition {
90 get { throw new NotImplementedException (); }
93 [MonoTODO]
94 public string SourceUri {
95 get { throw new NotImplementedException(); }
98 #endregion // Properties
100 #region Methods
102 [MonoTODO]
103 public override void GetObjectData (SerializationInfo info, StreamingContext context)
105 throw new NotImplementedException();
107 #endregion // Methods