From: Jan Kotas Date: Wed, 26 Apr 2017 21:01:22 +0000 (-0700) Subject: Delete moved file X-Git-Tag: submit/tizen/20210909.063632~11030^2~7103 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=386e617cfd09d23d128a889d39a6fd21eac968b7;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Delete moved file Commit migrated from https://github.com/dotnet/coreclr/commit/48b0229e9b70dbe4e477b3983f16599f9d861e55 --- 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) - { - } - } -}