EndpointNotFoundException.cs 726 B

1234567891011121314151617
  1. //------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //------------------------------------------------------------
  4. namespace System.ServiceModel
  5. {
  6. using System.Runtime.Serialization;
  7. [Serializable]
  8. public class EndpointNotFoundException : CommunicationException
  9. {
  10. public EndpointNotFoundException() { }
  11. public EndpointNotFoundException(string message) : base(message) { }
  12. public EndpointNotFoundException(string message, Exception innerException) : base(message, innerException) { }
  13. protected EndpointNotFoundException(SerializationInfo info, StreamingContext context) : base(info, context) { }
  14. }
  15. }