* DataColumn.cs: In Expression setter, set the expression member even if
[mono.git] / mcs / class / System.Data / System.Data / OperationAbortedException.cs
1 //
2 // System.Data.OperationAbortedException.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 OperationAbortedException : SystemException
17         {
18                 #region Constructors
19
20                 public OperationAbortedException ()
21                         : base (Locale.GetText ("An OperationAbortedException has occurred."))
22                 {
23                 }
24
25                 public OperationAbortedException (string s)
26                         : base (s)
27                 {
28                 }
29
30                 public OperationAbortedException (string s, Exception innerException)
31                         : base (s, innerException)
32                 {
33                 }
34
35                 public OperationAbortedException (SerializationInfo info, StreamingContext context)
36                         : base (info, context)
37                 {
38                 }
39
40                 #endregion // Constructors
41         }
42 }
43
44 #endif // NET_1_2