summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Resources/MissingManifestResourceException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/src/System/Resources/MissingManifestResourceException.cs')
-rw-r--r--src/mscorlib/src/System/Resources/MissingManifestResourceException.cs41
1 files changed, 0 insertions, 41 deletions
diff --git a/src/mscorlib/src/System/Resources/MissingManifestResourceException.cs b/src/mscorlib/src/System/Resources/MissingManifestResourceException.cs
deleted file mode 100644
index 2e82f19c7b..0000000000
--- a/src/mscorlib/src/System/Resources/MissingManifestResourceException.cs
+++ /dev/null
@@ -1,41 +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: Exception for a missing assembly-level resource
-**
-**
-===========================================================*/
-
-using System;
-using System.Runtime.Serialization;
-
-namespace System.Resources {
- [Serializable]
- public class MissingManifestResourceException : SystemException
- {
- public MissingManifestResourceException()
- : base(Environment.GetResourceString("Arg_MissingManifestResourceException")) {
- SetErrorCode(System.__HResults.COR_E_MISSINGMANIFESTRESOURCE);
- }
-
- public MissingManifestResourceException(String message)
- : base(message) {
- SetErrorCode(System.__HResults.COR_E_MISSINGMANIFESTRESOURCE);
- }
-
- public MissingManifestResourceException(String message, Exception inner)
- : base(message, inner) {
- SetErrorCode(System.__HResults.COR_E_MISSINGMANIFESTRESOURCE);
- }
-
- protected MissingManifestResourceException(SerializationInfo info, StreamingContext context) : base (info, context) {
- }
- }
-}