InvalidBodyAccessException.cs 969 B

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