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