| 123456789101112131415161718192021222324252627282930 |
- // System.Reflection.TargetInvocationException
- //
- // Sean MacIsaac ([email protected])
- // Duncan Mak ([email protected])
- //
- // (C) 2001 Ximian, Inc.
- using System.Runtime.Serialization;
- 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)
- {
- }
- protected TargetInvocationException (SerializationInfo info, StreamingContext sc)
- : base (info, sc)
- {
- }
- }
- }
|