Mon Nov 19 13:58:01 CET 2001 Paolo Molaro <lupus@ximian.com>
[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         public sealed class AmbiguousMatchException : SystemException {
15                 // Constructors
16                 public AmbiguousMatchException ()
17                         : base ("Ambiguous matching in method resolution")
18                 {
19                 }
20
21                 public AmbiguousMatchException (string message)
22                         : base (message)
23                 {
24                 }
25
26                 public AmbiguousMatchException (string message, Exception inner)
27                         : base (message, inner)
28                 {
29                 }
30         }
31 }