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