Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CookieException.cs « System.Net « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 09fd80601cedb24bdb4b91ada2cab7a403193740 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//
// System.Net.CookieException.cs
//
// Author:
//   Lawrence Pit (loz@cable.a2000.nl)
//

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);
		}
	}
}