| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // System.Net.CookieException.cs
- //
- // Author:
- // Lawrence Pit ([email protected])
- //
- using System.Globalization;
- using System.Runtime.Serialization;
- namespace System.Net
- {
- [Serializable]
- public class CookieException : FormatException, ISerializable
- {
- // Constructors
- public CookieException () : base ()
- {
- }
-
- internal CookieException (string msg) : base (msg)
- {
- }
-
- internal CookieException (string msg, Exception e) : base (msg, e)
- {
- }
- protected CookieException (SerializationInfo info, StreamingContext context)
- : base (info, context)
- {
- }
- // Methods
- void ISerializable.GetObjectData (SerializationInfo info, StreamingContext context)
- {
- base.GetObjectData (info, context);
- }
- }
- }
-
|