[Sys.Data] Fix Novell Bug #519648
[mono.git] / mcs / class / System.Data / System.Data.Odbc / OdbcException.cs
1 //
2 // System.Data.Odbc.OdbcException
3 //
4 // Author:
5 //   Brian Ritchie (brianlritchie@hotmail.com)
6 //
7 // Copyright (C) Brian Ritchie, 2002
8 //
9
10 //
11 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
12 //
13 // Permission is hereby granted, free of charge, to any person obtaining
14 // a copy of this software and associated documentation files (the
15 // "Software"), to deal in the Software without restriction, including
16 // without limitation the rights to use, copy, modify, merge, publish,
17 // distribute, sublicense, and/or sell copies of the Software, and to
18 // permit persons to whom the Software is furnished to do so, subject to
19 // the following conditions:
20 // 
21 // The above copyright notice and this permission notice shall be
22 // included in all copies or substantial portions of the Software.
23 // 
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 //
32
33 using System.Collections;
34 using System.ComponentModel;
35 using System.Data;
36 using System.Data.Common;
37 using System.Globalization;
38 using System.Runtime.InteropServices;
39 using System.Runtime.Serialization;
40 using System.Text;
41
42 namespace System.Data.Odbc
43 {
44         [Serializable]
45 #if NET_2_0
46         public sealed class OdbcException : DbException
47 #else
48         public sealed class OdbcException : SystemException
49 #endif
50         {
51                 OdbcErrorCollection odbcErrors;
52
53                 internal OdbcException (OdbcErrorCollection errors)
54                         : base (CreateMessage (errors))
55                 {
56                         odbcErrors = errors;
57                 }
58
59                 public OdbcErrorCollection Errors {
60                         get {
61                                 return odbcErrors;
62                         }
63                 }
64
65                 public override string Source {
66                         get {
67                                 return odbcErrors [0].Source;
68                         }
69                 }
70
71 #if !NET_2_0
72                 public override string Message {
73                         get {
74                                 return base.Message;
75                         }
76                 }
77 #endif
78
79                 private OdbcException (SerializationInfo si, StreamingContext sc) : base(si, sc)
80                 {
81                         odbcErrors = new OdbcErrorCollection ();
82                         odbcErrors = ((OdbcErrorCollection) si.GetValue (
83                                 "odbcErrors", typeof (OdbcErrorCollection)));
84                 }
85
86                 #region Methods
87
88                 public override void GetObjectData (SerializationInfo si, StreamingContext context)
89                 {
90                         if (si == null)
91                                 throw new ArgumentNullException ("si");
92
93                         si.AddValue ("odbcErrors", odbcErrors, typeof(OdbcErrorCollection));
94                         base.GetObjectData (si, context);
95                 }
96
97                 static string CreateMessage (OdbcErrorCollection errors)
98                 {
99                         StringBuilder sb = new StringBuilder ();
100                         for (int i = 0; i < errors.Count; i++) {
101                                 if (i > 0)
102                                         sb.Append (Environment.NewLine);
103                                 OdbcError error = errors [i];
104                                 sb.AppendFormat ("ERROR [{0}] {1}", error.SQLState,
105                                         error.Message);
106                         }
107                         return sb.ToString ();
108                 }
109
110                 #endregion // Methods
111         }
112 }