| 1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // System.Net.ProtocolViolationException.cs
- //
- // Author:
- // Lawrence Pit ([email protected])
- //
- using System.Globalization;
- using System.Runtime.Serialization;
- namespace System.Net
- {
- [Serializable]
- public class ProtocolViolationException : InvalidOperationException, ISerializable
- {
- // Constructors
- public ProtocolViolationException () : base ()
- {
- }
-
- public ProtocolViolationException (string message) : base (message)
- {
- }
- protected ProtocolViolationException (SerializationInfo info, StreamingContext context)
- : base (info, context)
- {
- }
- // Methods
- void ISerializable.GetObjectData (SerializationInfo info, StreamingContext context)
- {
- base.GetObjectData (info, context);
- }
- }
- }
-
|