// // TimestampFault.cs: Undocument exception when message expires // // Author: // Sebastien Pouliot (spouliot@motus.com) // // (C) 2002, 2003 Motus Technologies Inc. (http://www.motus.com) // // Licensed under MIT X11 (see LICENSE) with this specific addition: // // “This source code may incorporate intellectual property owned by Microsoft // Corporation. Our provision of this source code does not include any licenses // or any other rights to you under any Microsoft intellectual property. If you // would like a license from Microsoft (e.g. rebrand, redistribute), you need // to contact Microsoft directly.” // using System; using System.Web.Services.Protocols; using System.Xml; namespace Microsoft.Web.Services.Timestamp { internal class TimestampFault : SoapHeaderException { public TimestampFault (string message, XmlQualifiedName code) : base (message, code) {} } }