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

MissingFieldException.cs « System « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 78feaab1fdb4ca58aadb87b8710f831ad7ba0d97 (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
43
44
45
46
//	
// System.MissingFieldException.cs
//
// Author:
//	Duncan Mak (duncan@ximian.com)
//
// 2002 (C) Ximian, Inc. http://www.ximian.com
//

using System;
using System.Globalization;
using System.Runtime.Serialization;

namespace System
{
	[Serializable]
	public class MissingFieldException : MissingMemberException
	{
		// Constructors
		public MissingFieldException ()
			: base (Locale.GetText ("Field does not exist."))
		{
		}
		
		public MissingFieldException (string message)
			: base (message)
		{
		}
		
		protected MissingFieldException (SerializationInfo info,
						 StreamingContext context)
			: base (info, context)
		{
		}
		
		public MissingFieldException (string message, Exception innerException)
			: base (message, innerException)
		{
		}
		
		public MissingFieldException (string className, string fieldName)
			: base (className, fieldName)
		{
		}
	}
}