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

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

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

namespace System.Reflection
{
	[Serializable]
	public sealed class TargetParameterCountException : ApplicationException
	{
		public TargetParameterCountException ()
			: base (Locale.GetText ("Number of parameter does not match expected count."))
		{
		}

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

		public TargetParameterCountException (string message, Exception inner)
			: base (message, inner)
		{
		}

		internal TargetParameterCountException (SerializationInfo info,
						       StreamingContext context)
			: base (info, context)
		{
		}
	}
}