Mon Jul 1 18:01:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
[mono.git] / mcs / class / corlib / System.Reflection / TargetInvocationException.cs
1 // System.Reflection.TargetInvocationException
2 //
3 // Sean MacIsaac (macisaac@ximian.com)
4 // Duncan Mak  (duncan@ximian.com)
5 //
6 // (C) 2001 Ximian, Inc.
7
8 namespace System.Reflection
9 {
10         [Serializable]
11         public sealed class TargetInvocationException : ApplicationException
12         {
13                 public TargetInvocationException (Exception inner)
14                         : base (inner.Message, inner)
15                 {                       
16                 }
17
18                 public TargetInvocationException (string message, Exception inner)
19                         : base (message, inner)
20                 {
21                 }               
22         }       
23 }