X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2Fcorlib%2FSystem%2FEnvironment.cs;h=88dff3e3527d2f8e2763e19db2ceb0f85f61d7c0;hb=f31d87482950f6729a09cd86f53b77f332d883b9;hp=4bd15db01a2c535a10bb7e634bca7c9d8ce52fd6;hpb=b190f213a364a2793cc573e1bd9fae8be72296e4;p=mono.git diff --git a/mcs/class/corlib/System/Environment.cs b/mcs/class/corlib/System/Environment.cs index 4bd15db01a2..88dff3e3527 100644 --- a/mcs/class/corlib/System/Environment.cs +++ b/mcs/class/corlib/System/Environment.cs @@ -57,7 +57,7 @@ namespace System { * of icalls, do not require an increment. */ #pragma warning disable 169 - private const int mono_corlib_version = 152; + private const int mono_corlib_version = 153; #pragma warning restore 169 [ComVisible (true)] @@ -893,7 +893,9 @@ namespace System { [SecurityCritical] public static void FailFast (string message, Exception exception) { - throw new NotImplementedException (); +#pragma warning disable 618 + throw new ExecutionEngineException (message, exception); +#pragma warning restore } [MethodImplAttribute (MethodImplOptions.InternalCall)]