AmbiguousMatchException.cs 587 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // System.Reflection.AmbiguousMatchException.cs
  3. //
  4. // Author:
  5. // Paolo Molaro ([email protected])
  6. //
  7. // (C) 2001 Ximian, Inc. http://www.ximian.com
  8. //
  9. using System;
  10. namespace System.Reflection {
  11. [Serializable]
  12. public sealed class AmbiguousMatchException : SystemException {
  13. // Constructors
  14. public AmbiguousMatchException ()
  15. : base ("Ambiguous matching in method resolution")
  16. {
  17. }
  18. public AmbiguousMatchException (string message)
  19. : base (message)
  20. {
  21. }
  22. public AmbiguousMatchException (string message, Exception inner)
  23. : base (message, inner)
  24. {
  25. }
  26. }
  27. }