2004-03-31 Juraj Skripsky <juraj@hotfeet.ch>
[mono.git] / mcs / class / System.Data / System.Data / DataAdapterException.cs
1 //
2 // System.Data.DataAdapterException.cs
3 //
4 // Author:
5 //   Tim Coleman (tim@timcoleman.com)
6 //
7 // Copyright (C) Tim Coleman, 2003
8 //
9
10 #if NET_1_2
11
12 using System.Globalization;
13 using System.Runtime.Serialization;
14
15 namespace System.Data {
16         public class DataAdapterException : InvalidOperationException
17         {
18                 #region Constructors
19
20                 public DataAdapterException ()
21                         : base (Locale.GetText ("A DataAdapterException has occurred."))
22                 {
23                 }
24
25                 public DataAdapterException (string s)
26                         : base (s)
27                 {
28                 }
29
30                 public DataAdapterException (string s, Exception innerException)
31                         : base (s, innerException)
32                 {
33                 }
34
35                 public DataAdapterException (SerializationInfo info, StreamingContext context)
36                         : base (info, context)
37                 {
38                 }
39
40                 #endregion // Constructors
41         }
42 }
43
44 #endif // NET_1_2