Add MIT license to System.XML.DLL
[mono.git] / mcs / class / System.XML / System.Xml.Xsl / XsltException.cs
1 //
2 // System.Xml.Xsl.XsltException.cs
3 //
4 // Authors:
5 //  Tim Coleman (tim@timcoleman.com)
6 //  Andreas Nahr (ClassDevelopment@A-SoftTech.com)
7 //
8 // (C) Copyright 2002 Tim Coleman
9 // (C) 2003 Andreas Nahr
10 //
11
12 //
13 // Permission is hereby granted, free of charge, to any person obtaining
14 // a copy of this software and associated documentation files (the
15 // "Software"), to deal in the Software without restriction, including
16 // without limitation the rights to use, copy, modify, merge, publish,
17 // distribute, sublicense, and/or sell copies of the Software, and to
18 // permit persons to whom the Software is furnished to do so, subject to
19 // the following conditions:
20 // 
21 // The above copyright notice and this permission notice shall be
22 // included in all copies or substantial portions of the Software.
23 // 
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 //
32 \r
33 using System;\r
34 using System.Runtime.Serialization;\r
35 using System.Xml.XPath;\r
36 \r
37 namespace System.Xml.Xsl\r
38 {\r
39         [Serializable]\r
40         public class XsltException : SystemException\r
41         {\r
42                 #region Fields\r
43 \r
44                 int lineNumber;\r
45                 int linePosition;\r
46                 string sourceUri;\r
47 \r
48                 #endregion\r
49 \r
50                 #region Constructors\r
51 \r
52                 public XsltException (string message, Exception innerException)\r
53                         : base (message, innerException)\r
54                 {\r
55 //                      this.message = message;\r
56                 }\r
57 \r
58                 protected XsltException (SerializationInfo info, StreamingContext context)\r
59                 {\r
60                         lineNumber = info.GetInt32 ("lineNumber");\r
61                         linePosition = info.GetInt32 ("linePosition");\r
62                         sourceUri = info.GetString ("sourceUri");\r
63                 }
64
65                 internal XsltException (string message, Exception innerException, int lineNumber, int linePosition, string sourceUri)
66                         : base (message, innerException)\r
67                 {\r
68                         this.lineNumber = lineNumber;\r
69                         this.linePosition = linePosition;\r
70                         this.sourceUri = sourceUri;\r
71                 }\r
72 \r
73                 internal XsltException (string message, Exception innerException, XPathNavigator nav)
74                         : base (message, innerException)\r
75                 {\r
76                         IXmlLineInfo li = nav as IXmlLineInfo;\r
77                         this.lineNumber = li != null ? li.LineNumber : 0;\r
78                         this.linePosition = li != null ? li.LinePosition : 0;\r
79                         this.sourceUri = nav != null ? nav.BaseURI : String.Empty;\r
80                 }\r
81 \r
82                 #endregion\r
83 \r
84                 #region Properties\r
85 \r
86                 public int LineNumber {\r
87                         get { return lineNumber; }\r
88                 }\r
89 \r
90                 public int LinePosition {\r
91                         get { return linePosition; }\r
92                 }\r
93 \r
94                 public override string Message {\r
95                         get {\r
96                                 string msg = base.Message;\r
97                                 if (sourceUri != null)\r
98                                         msg += " " + sourceUri;\r
99                                 if (lineNumber != 0)\r
100                                         msg += " line " + lineNumber;\r
101                                 if (linePosition != 0)\r
102                                         msg += ", position " + linePosition;\r
103                                 return msg;\r
104                         }\r
105                 }\r
106 \r
107                 public string SourceUri {\r
108                         get { return sourceUri; }\r
109                 }\r
110 \r
111                 #endregion\r
112 \r
113                 #region Methods\r
114 \r
115                 public override void GetObjectData (SerializationInfo info, StreamingContext context)\r
116                 {\r
117                         base.GetObjectData (info, context);\r
118                         info.AddValue ("lineNumber", lineNumber);\r
119                         info.AddValue ("linePosition", linePosition);\r
120                         info.AddValue ("sourceUri", sourceUri);\r
121                 }\r
122 \r
123                 #endregion\r
124         }\r
125 }\r