2007-10-02 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.Design / System.Data.Design / TypedDataSetGeneratorException.cs
1 //
2 // System.Data.Design.TypedDataSetGeneratorException.cs
3 //
4 // Author: Duncan Mak  (duncan@ximian.com)
5 //
6 // (C) Ximian, Inc.
7
8 //
9 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
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 // It is a copy from System.Data.TypedDataSetGeneratorException
32
33 using System;
34 using System.Collections;
35 using System.Globalization;
36 using System.Runtime.Serialization;
37
38 namespace System.Data.Design {
39
40         [Serializable]
41         public class TypedDataSetGeneratorException : DataException
42         {
43
44                 IList errorList;
45
46                 #region Constructors
47                 public TypedDataSetGeneratorException ()
48                         : base (Locale.GetText ("System error."))
49                 {
50                 }
51
52                 public TypedDataSetGeneratorException (IList list)
53                         : base (Locale.GetText ("System error."))
54                 {
55                         errorList = list;
56                 }
57
58                 protected TypedDataSetGeneratorException (SerializationInfo info, StreamingContext context)
59                         : base (info, context)
60                 {
61                         int count = info.GetInt32 ("KEY_ARRAYCOUNT");
62                         errorList = new ArrayList (count);
63
64                         for (int i=0; i < count; i++)
65                                 errorList.Add (info.GetString("KEY_ARRAYVALUES" + i));
66                 }
67
68 #if NET_2_0
69                 public TypedDataSetGeneratorException (String error) : base (error)
70                 {
71                 }
72                 
73                 public TypedDataSetGeneratorException (String error, Exception inner) 
74                         : base (error, inner)
75                 {
76                 }
77 #endif
78                 #endregion //Constructors       
79
80                 public IList ErrorList {
81                         get { return errorList; }
82                 }
83
84                 #region Methods
85                                                                                                     
86                 public override void GetObjectData (SerializationInfo si, StreamingContext context)
87                 {
88                         base.GetObjectData (si, context);
89                                                 
90                         int count = (errorList != null) ? ErrorList.Count : 0;
91                         si.AddValue ("KEY_ARRAYCOUNT", count);
92
93                         for (int i=0; i < count; i++)
94                                 si.AddValue("KEY_ARRAYVALUES" + i, ErrorList [i]);
95                 }
96                                                                                                     
97                 #endregion // Methods
98         }
99 }