2001-11-21 Miguel de Icaza <miguel@ximian.com>
[mono.git] / mcs / class / corlib / System / MissingMemberException.cs
1
2 using System;
3 using System.Runtime.Serialization;
4 using System.Globalization;
5
6 namespace System {
7         public class MissingMemberException : MemberAccessException {
8                 
9                 public MissingMemberException ()
10                         : base (Locale.GetText ("A missing member exception has occurred."))
11                 {
12                 }
13
14                 public MissingMemberException (string message)
15                         : base (message)
16                 {
17                 }
18
19                 protected MissingMemberException (SerializationInfo info, StreamingContext context)
20                         : base (info, context) {
21                 }
22                 
23                 public MissingMemberException (string message, Exception inner)
24                         : base (message, inner)
25                 {
26                 }
27         }
28 }