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

TargetInvocationException.cs « System.Reflection « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b5ec55d2cb83b4f7270d8c9bac8a26fbffc03c20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// System.Reflection.TargetInvocationException
//
// Sean MacIsaac (macisaac@ximian.com)
// Duncan Mak  (duncan@ximian.com)
//
// (C) 2001 Ximian, Inc.

namespace System.Reflection
{
	[Serializable]
	public sealed class TargetInvocationException : ApplicationException
	{
		public TargetInvocationException (Exception inner)
			: base (inner.Message, inner)
		{			
		}

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