10f0fedaa876727b9da93546c9e8d9599efd1d11
[mono.git] / mcs / class / System / System.ComponentModel / Win32Exception.cs
1 //
2 // System.ComponentModel.Win32Exception.cs
3 //
4 // Author:
5 //   Dick Porter (dick@ximian.com)
6 //
7 // (C) 2002 Ximian, Inc.  http://www.ximian.com
8 // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 // 
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 // 
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 //
29
30 using System.Security;
31 using System.Security.Permissions;
32 using System.Runtime.InteropServices;
33 using System.Runtime.Serialization;
34 using System.Collections;
35 using System.Globalization;
36 using System.Runtime.CompilerServices;
37
38 namespace System.ComponentModel
39 {
40         [Serializable, SuppressUnmanagedCodeSecurity]
41         public class Win32Exception : ExternalException
42         {
43                 private int native_error_code;
44
45 //              [SecurityPermission (SecurityAction.LinkDemand, UnmanagedCode = true)]
46 #if TARGET_JVM
47                 [MonoNotSupported("")]
48 #endif
49                 public Win32Exception ()
50                         : base (W32ErrorMessage (Marshal.GetLastWin32Error ()))
51                 {
52                         native_error_code = Marshal.GetLastWin32Error ();
53                 }
54
55 //              [SecurityPermission (SecurityAction.LinkDemand, UnmanagedCode = true)]
56                 public Win32Exception (int error)
57                         : base (W32ErrorMessage (error))
58                 {
59                         native_error_code = error;
60                 }
61
62 //              [SecurityPermission (SecurityAction.LinkDemand, UnmanagedCode = true)]
63                 public Win32Exception (int error, string message) 
64                         : base (message)
65                 {
66                         native_error_code = error;
67                 }
68                 [SecurityPermission (SecurityAction.LinkDemand, UnmanagedCode = true)]
69 #if TARGET_JVM
70                 [MonoNotSupported ("")]
71 #endif
72                 public Win32Exception (string message)
73                         : base (message)
74                 {
75                         native_error_code = Marshal.GetLastWin32Error ();
76                 }
77
78 #if TARGET_JVM
79                 [MonoNotSupported ("")]
80 #endif
81                 [SecurityPermission (SecurityAction.LinkDemand, UnmanagedCode = true)]
82                 public Win32Exception (string message, Exception innerException)
83                         : base (message, innerException)
84                 {
85                         native_error_code = Marshal.GetLastWin32Error ();
86                 }
87
88                 protected Win32Exception(SerializationInfo info,
89                                          StreamingContext context)
90                         : base (info, context) {
91
92                         native_error_code = info.GetInt32 ("NativeErrorCode");
93                 }
94
95                 public int NativeErrorCode {
96                         get {
97                                 return(native_error_code);
98                         }
99                 }
100
101                 [SecurityPermission (SecurityAction.Demand, SerializationFormatter = true)]
102                 public override void GetObjectData(SerializationInfo info, StreamingContext context)
103                 {
104                         if (info == null)
105                                 throw new ArgumentNullException ("info");
106
107                         info.AddValue ("NativeErrorCode", native_error_code);
108                         base.GetObjectData (info, context);
109                 }
110
111                 [MethodImplAttribute (MethodImplOptions.InternalCall)]
112                 internal static extern string W32ErrorMessage (int error_code);
113         }
114 }