CommunicationObjectFaultedException.cs 828 B

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