2008-07-06 Sebastien Pouliot <sebastien@ximian.com>
[mono.git] / mcs / class / Mono.Data.TdsClient / Mono.Data.TdsClient / TdsError.cs
1 //
2 // Mono.Data.TdsClient.TdsError.cs
3 //
4 // Author:
5 //   Tim Coleman (tim@timcoleman.com)
6 //
7 // Copyright (C) 2002 Tim Coleman
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 using Mono.Data.Tds.Protocol;
32 using System;
33
34 namespace Mono.Data.TdsClient {
35         public sealed class TdsError
36         {
37                 #region Fields
38                 
39                 byte theClass = 0x0;
40                 int lineNumber;
41                 string message;
42                 int number;
43                 string procedure;
44                 string server;
45                 string source;
46                 byte state;
47
48                 #endregion // Fields
49
50                 #region Constructors
51
52                 internal TdsError (byte theClass, int lineNumber, string message, int number, string procedure, string server, string source, byte state)
53                 {
54                         this.theClass = theClass;
55                         this.lineNumber = lineNumber;
56                         this.message = message;
57                         this.number = number;
58                         this.procedure = procedure;
59                         this.server = server;
60                         this.source = source;
61                         this.state = state;
62                 }
63
64                 #endregion // Constructors
65
66                 #region Properties
67
68                 public byte Class {
69                         get { return theClass; }
70                 }
71
72                 public int LineNumber {
73                         get { return lineNumber; }
74                 }
75
76                 public string Message {
77                         get { return message; }
78                 }
79
80                 public int Number {
81                         get { return number; }
82                 }
83
84                 public string Procedure {
85                         get { return procedure; }
86                 }
87
88                 public string Server {
89                         get { return server; }
90                 }
91
92                 public string Source {
93                         get { return source; }
94                 }
95
96                 public byte State {
97                         get { return state; }
98                 }
99
100                 #endregion // Properties
101
102                 #region Methods
103
104                 [MonoTODO]
105                 public override string ToString ()
106                 {
107                         throw new NotImplementedException ();
108                 }
109
110                 #endregion // Methods
111         }
112 }