2008-06-30 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
authorAndreas N <andreas@mono-cvs.ximian.com>
Mon, 30 Jun 2008 21:57:30 +0000 (21:57 -0000)
committerAndreas N <andreas@mono-cvs.ximian.com>
Mon, 30 Jun 2008 21:57:30 +0000 (21:57 -0000)
* ContextMarshalException.cs:
* DllNotFoundException.cs:
* EntryPointNotFoundException.cs:
* FieldAccessException.cs:
* MethodAccessException.cs:
* MissingFieldException.cs:
* PlatformNotSupportedException.cs: Fix parameter names

svn path=/trunk/mcs/; revision=106930

mcs/class/corlib/System/ChangeLog
mcs/class/corlib/System/ContextMarshalException.cs
mcs/class/corlib/System/DllNotFoundException.cs
mcs/class/corlib/System/EntryPointNotFoundException.cs
mcs/class/corlib/System/FieldAccessException.cs
mcs/class/corlib/System/MethodAccessException.cs
mcs/class/corlib/System/MissingFieldException.cs
mcs/class/corlib/System/PlatformNotSupportedException.cs

index a8bec35f8220f8d453a49634138c04a070072b6d..e48ee45194e87e9b06ba488dd8f1028730c76760 100644 (file)
@@ -1,3 +1,13 @@
+2008-06-30  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
+
+       * ContextMarshalException.cs:
+       * DllNotFoundException.cs:
+       * EntryPointNotFoundException.cs:
+       * FieldAccessException.cs:
+       * MethodAccessException.cs:
+       * MissingFieldException.cs:
+       * PlatformNotSupportedException.cs: Fix parameter names
+
 2008-06-30  Marek Safar  <marek.safar@gmail.com>
 
        * String.cs: Tweaked hash code methods for better distibution, and speed-up.
index a53599baa6d45d177d32dd46f6d66206236e4fa2..4d8cdc9c49fad317668e8b5daa7b63002ef62938 100644 (file)
@@ -63,8 +63,8 @@ namespace System
                {
                }
 
-               public ContextMarshalException (string message, Exception innerException)
-                       :base (message, innerException)
+               public ContextMarshalException (string message, Exception inner)
+                       :base (message, inner)
                {
                        HResult = Result;
                }
index 3e1e42ad56ebada22cec8013986e12396180121d..51c6cdd5fde85216aca7fb1404591a9b76347c85 100644 (file)
@@ -62,8 +62,8 @@ namespace System
                {
                }
 
-               public DllNotFoundException (string message, Exception innerException)
-                       :base (message, innerException)
+               public DllNotFoundException (string message, Exception inner)
+                       :base (message, inner)
                {
                        HResult = Result;
                }
index 208b82533070acf22b98f81b3f05bbff0f3dce69..a08b9fc8be5b8a61d7b86df178667b4e1aa1d4a6 100644 (file)
@@ -62,8 +62,8 @@ namespace System
                {
                }
 
-               public EntryPointNotFoundException (string message, Exception innerException)
-                       :base (message, innerException)
+               public EntryPointNotFoundException (string message, Exception inner)
+                       :base (message, inner)
                {
                        HResult = Result;
                }
index 5360ec07d8c95e59b61ef2de5202623d1e54cad8..21118e24e97916ffd9a23c902240708453cafd91 100644 (file)
@@ -62,8 +62,8 @@ namespace System
                {
                }
 
-               public FieldAccessException (string message, Exception innerException)
-                       :base (message, innerException)
+               public FieldAccessException (string message, Exception inner)
+                       :base (message, inner)
                {
                        HResult = Result;
                }
index 5d8889efd1d045aa75356d440413a86c5d7ddfe3..9f70aacd830eb7cfd37213d7502401f160841640 100644 (file)
@@ -62,8 +62,8 @@ namespace System
                {
                }
 
-               public MethodAccessException (string message, Exception innerException)
-                       :base (message, innerException)
+               public MethodAccessException (string message, Exception inner)
+                       :base (message, inner)
                {
                        HResult = Result;
                }
index a99ac09a0f92a10cea283d07015e248102126bee..fa39bc0c11297e4c433809c2af2a74822dc36ff9 100644 (file)
@@ -62,8 +62,8 @@ namespace System
                {
                }
 
-               public MissingFieldException (string message, Exception innerException)
-                       : base (message, innerException)
+               public MissingFieldException (string message, Exception inner)
+                       : base (message, inner)
                {
                        HResult = Result;
                }
index 409391699af633768746d04be9c255cc13dc2745..7846f7bcc0b33e1e87de8976fd804c32f62e017f 100644 (file)
@@ -62,8 +62,8 @@ namespace System
                {
                }
 
-               public PlatformNotSupportedException (string message, Exception innerException)
-                       :base (message, innerException)
+               public PlatformNotSupportedException (string message, Exception inner)
+                       :base (message, inner)
                {
                        HResult = Result;
                }