| 123456789101112131415161718 |
- //-----------------------------------------------------------------------------
- // Copyright (c) Microsoft Corporation. All rights reserved.
- //-----------------------------------------------------------------------------
- namespace System.ServiceModel
- {
- using System;
- using System.Runtime.Serialization;
- [Serializable]
- public class CommunicationException : SystemException
- {
- public CommunicationException() { }
- public CommunicationException(string message) : base(message) { }
- public CommunicationException(string message, Exception innerException) : base(message, innerException) { }
- protected CommunicationException(SerializationInfo info, StreamingContext context) : base(info, context) { }
- }
- }
|