AmbiguousMatchException.cs 571 B

12345678910111213141516171819202122232425262728293031
  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. public sealed class AmbiguousMatchException : SystemException {
  12. // Constructors
  13. public AmbiguousMatchException ()
  14. : base ("Ambiguous matching in method resolution")
  15. {
  16. }
  17. public AmbiguousMatchException (string message)
  18. : base (message)
  19. {
  20. }
  21. public AmbiguousMatchException (string message, Exception inner)
  22. : base (message, inner)
  23. {
  24. }
  25. }
  26. }