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