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

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

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

namespace System.Reflection
{
	[Serializable]
	public class TargetException : ApplicationException
	{
		public TargetException ()
			: base (Locale.GetText ("Unable to invoke and invalid target."))
		{
		}

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

		public TargetException (string message, Exception innerException)
			: base (message, innerException)
		{
		}

		protected TargetException (SerializationInfo info, StreamingContext context)
			: base (info, context)
		{
		}
	}
}