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