**** Merged from MCS ****
[mono-project.git] / mcs / class / Microsoft.Web.Services / Microsoft.Web.Services.Addressing / AddressingFormatException.cs
blob8bc1f83641d3b9b87b67ed57120f46c4f6f63e63
1 //
2 // Microsoft.Web.Services.Addressing.AddressingFormatException.cs
3 //
4 // Author: Daniel Kornhauser dkor@alum.mit.edu
5 //
6 // (C) Copyright, Ximian, Inc.
7 //
9 using System;
10 using System.Web.Services.Protocols;
11 using System.Xml;
13 namespace Microsoft.Web.Services.Addressing {
15 [Serializable]
16 public class AddressingFormatException : SoapHeaderException
18 public static readonly string MissingActionElement
19 = "The <{0}> element should not have any child nodes other than text.";
22 public AddressingFormatException (string message)
23 : base (message, XmlQualifiedName.Empty)