Delete moved file
authorJan Kotas <jkotas@microsoft.com>
Wed, 26 Apr 2017 21:01:22 +0000 (14:01 -0700)
committerJan Kotas <jkotas@microsoft.com>
Wed, 26 Apr 2017 23:19:58 +0000 (16:19 -0700)
Commit migrated from https://github.com/dotnet/coreclr/commit/48b0229e9b70dbe4e477b3983f16599f9d861e55

src/coreclr/src/mscorlib/System.Private.CoreLib.csproj
src/coreclr/src/mscorlib/src/System/DllNotFoundException.cs [deleted file]

index df86533..f00baa2 100644 (file)
     <Compile Include="$(BclSourcesRoot)\System\Double.cs" />
     <Compile Include="$(BclSourcesRoot)\System\Empty.cs" />
     <Compile Include="$(BclSourcesRoot)\System\Enum.cs" />
-    <Compile Include="$(BclSourcesRoot)\System\DllNotFoundException.cs" />
     <Compile Include="$(BclSourcesRoot)\System\Environment.cs" />
     <Compile Include="$(BclSourcesRoot)\System\GC.cs" />
     <Compile Include="$(BclSourcesRoot)\System\Guid.cs" />
diff --git a/src/coreclr/src/mscorlib/src/System/DllNotFoundException.cs b/src/coreclr/src/mscorlib/src/System/DllNotFoundException.cs
deleted file mode 100644 (file)
index a3b46c7..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-// Licensed to the .NET Foundation under one or more agreements.
-// The .NET Foundation licenses this file to you under the MIT license.
-// See the LICENSE file in the project root for more information.
-
-/*=============================================================================
-**
-**
-**
-** Purpose: The exception class for some failed P/Invoke calls.
-**
-**
-=============================================================================*/
-
-
-using System;
-using System.Runtime.Serialization;
-
-namespace System
-{
-    [Serializable]
-    public class DllNotFoundException : TypeLoadException
-    {
-        public DllNotFoundException()
-            : base(SR.Arg_DllNotFoundException)
-        {
-            HResult = __HResults.COR_E_DLLNOTFOUND;
-        }
-
-        public DllNotFoundException(String message)
-            : base(message)
-        {
-            HResult = __HResults.COR_E_DLLNOTFOUND;
-        }
-
-        public DllNotFoundException(String message, Exception inner)
-            : base(message, inner)
-        {
-            HResult = __HResults.COR_E_DLLNOTFOUND;
-        }
-
-        protected DllNotFoundException(SerializationInfo info, StreamingContext context) : base(info, context)
-        {
-        }
-    }
-}