2003-11-11 Todd Berman <tberman@gentoo.org>
[mono.git] / mcs / class / corlib / System.Reflection / AmbiguousMatchException.cs
1 //
2 // System.Reflection.AmbiguousMatchException.cs
3 //
4 // Author:
5 //   Paolo Molaro (lupus@ximian.com)
6 //
7 // (C) 2001 Ximian, Inc.  http://www.ximian.com
8 //
9
10 using System;
11
12 namespace System.Reflection {
13
14         [Serializable]
15         public sealed class AmbiguousMatchException : SystemException {
16                 // Constructors
17                 public AmbiguousMatchException ()
18                         : base ("Ambiguous matching in method resolution")
19                 {
20                 }
21
22                 public AmbiguousMatchException (string message)
23                         : base (message)
24                 {
25                 }
26
27                 public AmbiguousMatchException (string message, Exception inner)
28                         : base (message, inner)
29                 {
30                 }
31         }
32 }