(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / Microsoft.Web.Services / Microsoft.Web.Services.Security / SecurityFault.cs
blob7caf366c0672da61be4f0f3e6f491b0277076ede
1 //
2 // SecurityFault.cs: Undocument exception when a security fault happens
3 //
4 // Author:
5 // Sebastien Pouliot (spouliot@motus.com)
6 //
7 // (C) 2002, 2003 Motus Technologies Inc. (http://www.motus.com)
8 //
9 // Licensed under MIT X11 (see LICENSE) with this specific addition:
11 // “This source code may incorporate intellectual property owned by Microsoft
12 // Corporation. Our provision of this source code does not include any licenses
13 // or any other rights to you under any Microsoft intellectual property. If you
14 // would like a license from Microsoft (e.g. rebrand, redistribute), you need
15 // to contact Microsoft directly.”
18 using System;
19 using System.Web.Services.Protocols;
20 using System.Xml;
22 namespace Microsoft.Web.Services.Security {
24 internal class SecurityFault : SoapHeaderException {
26 public SecurityFault (string message, XmlQualifiedName code) : base (message, code) {}