This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / class / System.Web.Services / System.Web.Services.Protocols / SoapException.cs
1 // \r
2 // System.Web.Services.Protocols.SoapException.cs\r
3 //\r
4 // Author:\r
5 //   Tim Coleman (tim@timcoleman.com)\r
6 //\r
7 // Copyright (C) Tim Coleman, 2002\r
8 //\r
9
10 //
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.
29 //
30 \r
31 using System.Xml;\r
32 \r
33 namespace System.Web.Services.Protocols {\r
34         public class SoapException : SystemException {\r
35 \r
36                 #region Fields\r
37 \r
38                 public static readonly XmlQualifiedName ClientFaultCode = new XmlQualifiedName ("Client", "http://schemas.xmlsoap.org/soap/envelope/");\r
39                 public static readonly XmlQualifiedName DetailElementName = new XmlQualifiedName ("detail");\r
40                 public static readonly XmlQualifiedName MustUnderstandFaultCode = new XmlQualifiedName ("MustUnderstand", "http://schemas.xmlsoap.org/soap/envelope/");\r
41                 public static readonly XmlQualifiedName ServerFaultCode = new XmlQualifiedName ("Server", "http://schemas.xmlsoap.org/soap/envelope/");\r
42                 public static readonly XmlQualifiedName VersionMismatchFaultCode = new XmlQualifiedName ("VersionMismatch", "http://schemas.xmlsoap.org/soap/envelope/");\r
43 \r
44                 string actor;\r
45                 XmlQualifiedName code;\r
46                 XmlNode detail;\r
47 \r
48                 #endregion\r
49 \r
50                 #region Constructors\r
51 \r
52                 public SoapException (string message, XmlQualifiedName code)\r
53                         : base (message)\r
54                 {\r
55                         this.code = code;\r
56                 }\r
57 \r
58                 public SoapException (string message, XmlQualifiedName code, Exception innerException)\r
59                         : base (message, innerException)\r
60                 {\r
61                         this.code = code;\r
62                 }\r
63 \r
64                 public SoapException (string message, XmlQualifiedName code, string actor)\r
65                         : base (message)\r
66                 {\r
67                         this.code = code;\r
68                         this.actor = actor;\r
69                 }\r
70 \r
71                 public SoapException (string message, XmlQualifiedName code, string actor, Exception innerException)\r
72                         : base (message, innerException)\r
73                 {\r
74                         this.code = code;\r
75                         this.actor = actor;\r
76                 }\r
77 \r
78                 public SoapException (string message, XmlQualifiedName code, string actor, XmlNode detail)\r
79                         : base (message)\r
80                 {\r
81                         this.code = code;\r
82                         this.actor = actor;\r
83                         this.detail = detail;\r
84                 }\r
85 \r
86                 public SoapException (string message, XmlQualifiedName code, string actor, XmlNode detail, Exception innerException)\r
87                         : base (message, innerException)\r
88                 {\r
89                         this.code = code;\r
90                         this.actor = actor;\r
91                         this.detail = detail;\r
92                 }\r
93 \r
94                 #endregion // Constructors\r
95 \r
96                 #region Properties\r
97 \r
98                 public string Actor {\r
99                         get { return actor; }\r
100                 }\r
101 \r
102                 public XmlQualifiedName Code {\r
103                         get { return code; }\r
104                 }\r
105 \r
106                 public XmlNode Detail {\r
107                         get { return detail; }\r
108                 }\r
109 \r
110                 #endregion // Properties\r
111         }\r
112 }\r