2004-03-10 Umadevi S (sumadevi@novell.com)
[mono.git] / mcs / class / System.Data / System.Data / DeletedRowInaccessibleException.cs
1 //
2 // System.Data.DeletedRowInaccessibleException.cs
3 //
4 // Author: Duncan Mak  (duncan@ximian.com)
5 //
6 // (C) Ximian, Inc.
7
8 using System;
9 using System.Globalization;
10 using System.Runtime.Serialization;
11
12 namespace System.Data {
13
14         [Serializable]
15         public class DeletedRowInaccessibleException : DataException
16         {
17                 public DeletedRowInaccessibleException ()
18                         : base (Locale.GetText ("This DataRow has been deleted"))
19                 {
20                 }
21
22                 public DeletedRowInaccessibleException (string message)
23                         : base (message)
24                 {
25                 }
26
27                 protected DeletedRowInaccessibleException (SerializationInfo info, StreamingContext context)
28                         : base (info, context)
29                 {
30                 }
31         }
32 }