InvalidMessageContractException.cs 926 B

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