Merge pull request #325 from adbre/iss5464
[mono.git] / mcs / class / corlib / System / ArgumentException.cs
1 //
2 // System.ArgumentException.cs
3 //
4 // Authors:
5 //   Joe Shaw (joe@ximian.com)
6 //   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
7 //
8 // (C) 2001 Ximian, Inc.  http://www.ximian.com
9 //
10
11 //
12 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
13 //
14 // Permission is hereby granted, free of charge, to any person obtaining
15 // a copy of this software and associated documentation files (the
16 // "Software"), to deal in the Software without restriction, including
17 // without limitation the rights to use, copy, modify, merge, publish,
18 // distribute, sublicense, and/or sell copies of the Software, and to
19 // permit persons to whom the Software is furnished to do so, subject to
20 // the following conditions:
21 // 
22 // The above copyright notice and this permission notice shall be
23 // included in all copies or substantial portions of the Software.
24 // 
25 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
29 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
30 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
31 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32 //
33
34 using System.Runtime.Serialization;
35 using System.Runtime.InteropServices;
36
37 namespace System
38 {
39         [Serializable]
40         [ComVisible (true)]
41         [StructLayout (LayoutKind.Sequential)]
42         public class ArgumentException : SystemException
43         {
44                 const int Result = unchecked ((int)0x80070057);
45
46                 private string param_name;
47
48                 // Constructors
49                 public ArgumentException ()
50                         : base (Locale.GetText ("Value does not fall within the expected range."))
51                 {
52                         HResult = Result;
53                 }
54
55                 public ArgumentException (string message)
56                         : base (message)
57                 {
58                         HResult = Result;
59                 }
60
61                 public ArgumentException (string message, Exception innerException)
62                         : base (message, innerException)
63                 {
64                         HResult = Result;
65                 }
66
67                 public ArgumentException (string message, string paramName)
68                         : base (message)
69                 {
70                         this.param_name = paramName;
71                         HResult = Result;
72                 }
73
74                 public ArgumentException (string message, string paramName, Exception innerException)
75                         : base (message, innerException)
76                 {
77                         this.param_name = paramName;
78                         HResult = Result;
79                 }
80
81                 protected ArgumentException (SerializationInfo info, StreamingContext context)
82                         : base (info, context)
83                 {
84                         param_name = info.GetString ("ParamName");
85                 }
86
87                 // Properties
88                 public virtual string ParamName {
89                         get {
90                                 return param_name;
91                         }
92                 }
93
94                 public override string Message {
95                         get {
96                                 if (ParamName != null && ParamName.Length != 0)
97                                         return base.Message + Environment.NewLine
98                                                 + Locale.GetText ("Parameter name: ")
99                                                 + ParamName;
100                                 return base.Message;
101                         }
102                 }
103
104                 public override void GetObjectData (SerializationInfo info, StreamingContext context)
105                 {
106                         base.GetObjectData (info, context);
107                         info.AddValue ("ParamName", ParamName);
108                 }
109         }
110 }