AddressAlreadyInUseException.cs 741 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 AddressAlreadyInUseException : CommunicationException
  9. {
  10. public AddressAlreadyInUseException() { }
  11. public AddressAlreadyInUseException(string message) : base(message) { }
  12. public AddressAlreadyInUseException(string message, Exception innerException) : base(message, innerException) { }
  13. protected AddressAlreadyInUseException(SerializationInfo info, StreamingContext context) : base(info, context) { }
  14. }
  15. }