TargetInvocationException.cs 528 B

1234567891011121314151617181920212223
  1. // System.Reflection.TargetInvocationException
  2. //
  3. // Sean MacIsaac ([email protected])
  4. // Duncan Mak ([email protected])
  5. //
  6. // (C) 2001 Ximian, Inc.
  7. namespace System.Reflection
  8. {
  9. [Serializable]
  10. public sealed class TargetInvocationException : ApplicationException
  11. {
  12. public TargetInvocationException (Exception inner)
  13. : base ("Exception has been thrown by the target of an invocation.", inner)
  14. {
  15. }
  16. public TargetInvocationException (string message, Exception inner)
  17. : base (message, inner)
  18. {
  19. }
  20. }
  21. }