(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / Mono.Data.Tds / Mono.Data.Tds.Protocol / TdsInternalException.cs
blob73da935a80461f859c0fad6fcfbe11b4a2060796
1 //
2 // Mono.Data.Tds.Protocol.TdsInternalException.cs
3 //
4 // Author:
5 // Tim Coleman (tim@timcoleman.com)
6 //
7 // Copyright (C) 2002 Tim Coleman
8 //
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.
31 using System;
32 using System.Runtime.Serialization;
34 namespace Mono.Data.Tds.Protocol {
35 public class TdsInternalException : SystemException
37 #region Fields
39 byte theClass;
40 int lineNumber;
41 string message;
42 int number;
43 string procedure;
44 string server;
45 string source;
46 byte state;
48 #endregion // Fields
50 #region Constructors
52 internal TdsInternalException ()
53 : base ("a TDS Exception has occurred.")
57 internal TdsInternalException (byte theClass, int lineNumber, string message, int number, string procedure, string server, string source, byte state)
58 : base (message)
60 this.theClass = theClass;
61 this.lineNumber = lineNumber;
62 this.message = message;
63 this.number = number;
64 this.procedure = procedure;
65 this.server = server;
66 this.source = source;
67 this.state = state;
70 #endregion // Constructors
72 #region Properties
74 public byte Class {
75 get { return theClass; }
78 public int LineNumber {
79 get { return lineNumber; }
82 public override string Message {
83 get { return message; }
86 public int Number {
87 get { return number; }
90 public string Procedure {
91 get { return procedure; }
94 public string Server {
95 get { return server; }
98 public override string Source {
99 get { return source; }
102 public byte State {
103 get { return state; }
106 #endregion // Properties
108 #region Methods
110 [MonoTODO]
111 public override void GetObjectData (SerializationInfo si, StreamingContext context)
113 throw new NotImplementedException ();
116 #endregion // Methods