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

MemberAccessException.cs « System « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 97a556fb7e4aff448ec4e9f873460f82fd5cb7d7 (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
using System;
using System.Globalization;
using System.Runtime.Serialization;

namespace System {

	[Serializable]
	public class MemberAccessException : SystemException {
		
		public MemberAccessException ()
			: base (Locale.GetText ("A member access exception has occurred."))
		{
		}

		public MemberAccessException (string message)
			: base (message)
		{
		}

		protected MemberAccessException (SerializationInfo info, StreamingContext context)
			: base (info, context) {
		}
		
		public MemberAccessException (string message, Exception inner)
			: base (message, inner)
		{
		}
	}
}