| 1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // System.Reflection.AmbiguousMatchException.cs
- //
- // Author:
- // Paolo Molaro ([email protected])
- //
- // (C) 2001 Ximian, Inc. http://www.ximian.com
- //
- using System;
- using System.Runtime.Serialization;
- namespace System.Reflection {
- [Serializable]
- public sealed class AmbiguousMatchException : SystemException {
- // Constructors
- public AmbiguousMatchException ()
- : base ("Ambiguous matching in method resolution")
- {
- }
- public AmbiguousMatchException (string message)
- : base (message)
- {
- }
- public AmbiguousMatchException (string message, Exception inner)
- : base (message, inner)
- {
- }
-
- internal AmbiguousMatchException (SerializationInfo info, StreamingContext context)
- : base (info, context)
- {
- }
- }
- }
|