NetDispatcherFaultException.cs 860 B

123456789101112131415161718192021
  1. //-----------------------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //-----------------------------------------------------------------------------
  4. namespace System.ServiceModel.Dispatcher
  5. {
  6. using System;
  7. using System.ServiceModel;
  8. using System.ServiceModel.Channels;
  9. internal class NetDispatcherFaultException : FaultException
  10. {
  11. public NetDispatcherFaultException(string reason, FaultCode code, Exception innerException)
  12. : base(reason, code, FaultCodeConstants.Actions.NetDispatcher, innerException)
  13. {
  14. }
  15. public NetDispatcherFaultException(FaultReason reason, FaultCode code, Exception innerException)
  16. : base(reason, code, FaultCodeConstants.Actions.NetDispatcher, innerException)
  17. {
  18. }
  19. }
  20. }