6be0721c2cb4f823dc2aeac385e58e5434636510
[mono.git] / mcs / class / System.Data / System.Data.OleDb / OleDbError.cs
1 //
2 // System.Data.OleDb.OleDbError
3 //
4 // Authors:
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
15 namespace System.Data.OleDb
16 {
17         public sealed class OleDbError
18         {
19                 #region Properties
20
21                 public string Message {
22                         [MonoTODO]
23                         get { throw new NotImplementedException (); }
24                 }
25
26                 public int NativeError {
27                         [MonoTODO]
28                         get { throw new NotImplementedException (); }
29                 }
30
31                 public string Source {
32                         [MonoTODO]
33                         get { throw new NotImplementedException (); }
34                 }
35
36                 public string SqlState {
37                         [MonoTODO]
38                         get { throw new NotImplementedException (); }
39                 }
40
41                 #endregion
42
43                 #region Methods
44
45                 [MonoTODO]
46                 public override string ToString ()
47                 {
48                         throw new NotImplementedException ();
49                 }
50
51                 #endregion
52         }
53 }