35 lines
926 B
C#
35 lines
926 B
C#
|
//-----------------------------------------------------------------------------
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
//-----------------------------------------------------------------------------
|
||
|
namespace System.ServiceModel
|
||
|
{
|
||
|
using System;
|
||
|
using System.Runtime.Serialization;
|
||
|
|
||
|
[Serializable]
|
||
|
public class InvalidMessageContractException : SystemException
|
||
|
{
|
||
|
public InvalidMessageContractException()
|
||
|
: base()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public InvalidMessageContractException(String message)
|
||
|
: base(message)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public InvalidMessageContractException(String message, Exception innerException)
|
||
|
: base(message, innerException)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
protected InvalidMessageContractException(SerializationInfo info, StreamingContext context)
|
||
|
: base(info, context)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|