2002-08-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / class / corlib / System / MulticastNotSupportedException.cs
1 //
2 // System.MulticastNotSupportedException.cs
3 //
4 // Author:
5 //   Joe Shaw (joe@ximian.com)
6 //
7 // (C) 2001 Ximian, Inc.  http://www.ximian.com
8 //
9
10 using System.Globalization;
11 namespace System {
12
13         [Serializable]
14         public sealed class MulticastNotSupportedException : SystemException {
15                 // Constructors
16                 public MulticastNotSupportedException ()
17                         : base (Locale.GetText ("This operation cannot be performed with the specified delagates"))
18                 {
19                 }
20
21                 public MulticastNotSupportedException (string message)
22                         : base (message)
23                 {
24                 }
25
26                 public MulticastNotSupportedException (string message, Exception inner)
27                         : base (message, inner)
28                 {
29                 }
30         }
31 }