Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Coleman <tim@mono-cvs.ximian.com>2002-07-23 02:53:25 +0400
committerTim Coleman <tim@mono-cvs.ximian.com>2002-07-23 02:53:25 +0400
commitea1e19acf4e3574f1e65223efb3286bed350e284 (patch)
tree570c68b2aac604cd0f9a3bf090ebbfdab48bbf23 /mcs/class/System.Web.Services/System.Web.Services.Protocols/SoapHeaderException.cs
parentdb02562dea00ac6bb3700af03efa88b6c375701c (diff)
2002-07-22 Tim Coleman <tim@timcoleman.com>
* SoapHeaderException.cs: New file added svn path=/trunk/mcs/; revision=6035
Diffstat (limited to 'mcs/class/System.Web.Services/System.Web.Services.Protocols/SoapHeaderException.cs')
-rw-r--r--mcs/class/System.Web.Services/System.Web.Services.Protocols/SoapHeaderException.cs41
1 files changed, 41 insertions, 0 deletions
diff --git a/mcs/class/System.Web.Services/System.Web.Services.Protocols/SoapHeaderException.cs b/mcs/class/System.Web.Services/System.Web.Services.Protocols/SoapHeaderException.cs
new file mode 100644
index 00000000000..973575ea699
--- /dev/null
+++ b/mcs/class/System.Web.Services/System.Web.Services.Protocols/SoapHeaderException.cs
@@ -0,0 +1,41 @@
+//
+// System.Web.Services.Protocols.SoapHeaderException.cs
+//
+// Author:
+// Tim Coleman (tim@timcoleman.com)
+//
+// Copyright (C) Tim Coleman, 2002
+//
+
+using System.Xml;
+
+namespace System.Web.Services.Protocols {
+ public class SoapHeaderException : SoapException {
+
+ #region Constructors
+
+ public SoapException (string message, XmlQualifiedName code)
+ : base (message, code)
+ {
+ this.code = code;
+ }
+
+ public SoapException (string message, XmlQualifiedName code, Exception innerException)
+ : this (message, code)
+ {
+ }
+
+ public SoapException (string message, XmlQualifiedName code, string actor)
+ : this (message, code)
+ {
+ this.actor = actor;
+ }
+
+ public SoapException (string message, XmlQualifiedName code, string actor, Exception innerException)
+ : this (message, code, actor)
+ {
+ }
+
+ #endregion // Constructors
+ }
+}