SecurityNegotiationException.cs 892 B

123456789101112131415161718192021222324252627282930313233
  1. //------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //------------------------------------------------------------
  4. namespace System.ServiceModel.Security
  5. {
  6. using System;
  7. using System.Runtime.Serialization;
  8. [Serializable]
  9. public class SecurityNegotiationException : CommunicationException
  10. {
  11. public SecurityNegotiationException()
  12. : base()
  13. {
  14. }
  15. public SecurityNegotiationException(String message)
  16. : base(message)
  17. {
  18. }
  19. public SecurityNegotiationException(String message, Exception innerException)
  20. : base(message, innerException)
  21. {
  22. }
  23. protected SecurityNegotiationException(SerializationInfo info, StreamingContext context)
  24. : base(info, context)
  25. {
  26. }
  27. }
  28. }