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