2002-08-18 Rodrigo Moya <rodrigo@ximian.com>
[mono.git] / mcs / class / System.Data / System.Data.OleDb / OleDbException.cs
1 //
2 // System.Data.OleDb.OleDbException
3 //
4 // Author:
5 //   Rodrigo Moya (rodrigo@ximian.com)
6 //   Tim Coleman (tim@timcoleman.com)
7 //
8 // Copyright (C) Rodrigo Moya, 2002
9 // Copyright (C) Tim Coleman, 2002
10 //
11
12 using System.Data;
13 using System.Data.Common;
14 using System.Runtime.InteropServices;
15 using System.Runtime.Serialization;
16
17 namespace System.Data.OleDb
18 {
19         [Serializable]
20         public sealed class OleDbException : ExternalException
21         {
22                 #region Properties
23
24                 public override int ErrorCode { 
25                         [MonoTODO]
26                         get { throw new NotImplementedException (); }
27                 }
28
29                 public OleDbErrorCollection Errors {    
30                         [MonoTODO]
31                         get { throw new NotImplementedException (); }
32                 }
33
34                 public override string Message {        
35                         [MonoTODO]
36                         get { throw new NotImplementedException (); }
37                 }
38
39                 public override string Source { 
40                         [MonoTODO]
41                         get { throw new NotImplementedException (); }
42                 }
43
44                 #endregion // Properties
45
46                 #region Methods
47
48                 [MonoTODO]
49                 public override void GetObjectData (SerializationInfo si, StreamingContext context)
50                 {
51                         throw new NotImplementedException ();
52                 }
53
54                 #endregion // Methods
55         }
56 }