| 1234567891011121314151617181920212223 |
- // System.Reflection.TargetInvocationException
- //
- // Sean MacIsaac ([email protected])
- // Duncan Mak ([email protected])
- //
- // (C) 2001 Ximian, Inc.
- namespace System.Reflection
- {
- [Serializable]
- public sealed class TargetInvocationException : ApplicationException
- {
- public TargetInvocationException (Exception inner)
- : base ("Exception has been thrown by the target of an invocation.", inner)
- {
- }
- public TargetInvocationException (string message, Exception inner)
- : base (message, inner)
- {
- }
- }
- }
|