2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / class / System.XML / System.Xml / XmlException.cs
blob6e11b8b276b9d2b7c326388038e6d250975ca786
1 //
2 // XmlException.cs
3 //
4 // Author:
5 // Jason Diamond (jason@injektilo.org)
6 // Atsushi Enomoto (atsushi@ximian.com)
7 //
8 // (C) 2002 Jason Diamond http://injektilo.org/
9 // Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com)
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 using System.Globalization;
32 using System.Runtime.Serialization;
33 using System.Security.Permissions;
35 namespace System.Xml
37 [Serializable]
38 public class XmlException : SystemException
40 #region Fields
42 int lineNumber;
43 int linePosition;
44 string sourceUri;
45 string res;
46 string [] messages;
48 #endregion
50 #region consts
52 private const string Xml_DefaultException = "Xml_DefaultException";
53 private const string Xml_UserException = "Xml_UserException";
55 #endregion
57 #region Constructors
59 public XmlException ()
60 : base ()
62 this.res = Xml_DefaultException;
63 this.messages = new string [1];
66 public XmlException (string message, Exception innerException)
67 : base (message, innerException)
69 this.res = Xml_UserException;
70 this.messages = new string [] {message};
73 protected XmlException (SerializationInfo info, StreamingContext context)
74 : base (info, context)
76 this.lineNumber = info.GetInt32 ("lineNumber");
77 this.linePosition = info.GetInt32 ("linePosition");
78 this.res = info.GetString ("res");
79 this.messages = (string []) info.GetValue ("args", typeof(string []));
80 #if NET_2_0
81 this.sourceUri = info.GetString ("sourceUri");
82 #endif
85 public XmlException (string message)
86 : base (message)
88 this.res = Xml_UserException;
89 this.messages = new string [] {message};
92 internal XmlException (IXmlLineInfo li,
93 string sourceUri,
94 string message)
95 : this (li, null, sourceUri, message)
99 internal XmlException (IXmlLineInfo li,
100 Exception innerException,
101 string sourceUri,
102 string message)
103 : this (message, innerException)
105 if (li != null) {
106 this.lineNumber = li.LineNumber;
107 this.linePosition = li.LinePosition;
109 this.sourceUri = sourceUri;
112 public XmlException (string message, Exception innerException, int lineNumber, int linePosition)
113 : this (message, innerException)
115 this.lineNumber = lineNumber;
116 this.linePosition = linePosition;
119 #if NET_2_1
120 internal XmlException (string message, int lineNumber, int linePosition,
121 object sourceObject, string sourceUri, Exception innerException)
122 : base (
123 GetMessage (message, sourceUri, lineNumber, linePosition, sourceObject),
124 innerException)
126 //hasLineInfo = true;
127 this.lineNumber = lineNumber;
128 this.linePosition = linePosition;
129 //this.sourceObj = sourceObject;
130 this.sourceUri = sourceUri;
133 private static string GetMessage (string message, string sourceUri, int lineNumber, int linePosition, object sourceObj)
135 string msg = "XmlSchema error: " + message;
136 if (lineNumber > 0)
137 msg += String.Format (CultureInfo.InvariantCulture, " XML {0} Line {1}, Position {2}.",
138 (sourceUri != null && sourceUri != "") ? "URI: " + sourceUri + " ." : "",
139 lineNumber,
140 linePosition);
141 return msg;
143 #endif
145 #endregion
147 #region Properties
149 public int LineNumber {
150 get { return lineNumber; }
153 public int LinePosition {
154 get { return linePosition; }
157 #if NET_2_0
158 public string SourceUri {
159 get { return sourceUri; }
161 #endif
163 public override string Message {
164 get {
165 if (lineNumber == 0)
166 return base.Message;
168 return String.Format (CultureInfo.InvariantCulture, "{0} {3} Line {1}, position {2}.",
169 base.Message, lineNumber, linePosition, sourceUri);
173 #endregion
175 #region Methods
177 [SecurityPermission (SecurityAction.Demand, SerializationFormatter = true)]
178 public override void GetObjectData (SerializationInfo info, StreamingContext context)
180 base.GetObjectData (info, context);
181 info.AddValue ("lineNumber", lineNumber);
182 info.AddValue ("linePosition", linePosition);
183 info.AddValue ("res", res);
184 info.AddValue ("args", messages);
185 #if NET_2_0
186 info.AddValue ("sourceUri", sourceUri);
187 #endif
190 #endregion