(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / Microsoft.Web.Services / Microsoft.Web.Services.Dime / DimeFormatException.cs
blob2aed4b7e21c0731b4290c70d49e3260be44751be
1 //
2 // Microsoft.Web.Services.DimeFormatException.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.Dime {
15 [Serializable]
16 public class DimeFormatException: SoapHeaderException
18 public DimeFormatException (string message)
19 : base (String.Empty, XmlQualifiedName.Empty)
23 public DimeFormatException (string message, Exception ex)
24 : base (message, XmlQualifiedName.Empty, ex)