WrappedDispatcherException.cs 872 B

123456789101112131415161718192021222324252627282930313233
  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. class WrappedDispatcherException : SystemException
  10. {
  11. public WrappedDispatcherException()
  12. : base()
  13. {
  14. }
  15. public WrappedDispatcherException(string message)
  16. : base(message)
  17. {
  18. }
  19. public WrappedDispatcherException(SerializationInfo info, StreamingContext context)
  20. : base(info, context)
  21. {
  22. }
  23. public WrappedDispatcherException(string message, Exception inner)
  24. : base(message, inner)
  25. {
  26. }
  27. }
  28. }