From 386e617cfd09d23d128a889d39a6fd21eac968b7 Mon Sep 17 00:00:00 2001 From: Jan Kotas Date: Wed, 26 Apr 2017 14:01:22 -0700 Subject: [PATCH] Delete moved file Commit migrated from https://github.com/dotnet/coreclr/commit/48b0229e9b70dbe4e477b3983f16599f9d861e55 --- .../src/mscorlib/System.Private.CoreLib.csproj | 1 - .../mscorlib/src/System/DllNotFoundException.cs | 45 ---------------------- 2 files changed, 46 deletions(-) delete mode 100644 src/coreclr/src/mscorlib/src/System/DllNotFoundException.cs diff --git a/src/coreclr/src/mscorlib/System.Private.CoreLib.csproj b/src/coreclr/src/mscorlib/System.Private.CoreLib.csproj index df86533..f00baa2 100644 --- a/src/coreclr/src/mscorlib/System.Private.CoreLib.csproj +++ b/src/coreclr/src/mscorlib/System.Private.CoreLib.csproj @@ -330,7 +330,6 @@ - diff --git a/src/coreclr/src/mscorlib/src/System/DllNotFoundException.cs b/src/coreclr/src/mscorlib/src/System/DllNotFoundException.cs deleted file mode 100644 index a3b46c7..0000000 --- a/src/coreclr/src/mscorlib/src/System/DllNotFoundException.cs +++ /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) - { - } - } -} -- 2.7.4