summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/DllNotFoundException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/src/System/DllNotFoundException.cs')
-rw-r--r--src/mscorlib/src/System/DllNotFoundException.cs40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/mscorlib/src/System/DllNotFoundException.cs b/src/mscorlib/src/System/DllNotFoundException.cs
new file mode 100644
index 0000000000..f860904f3f
--- /dev/null
+++ b/src/mscorlib/src/System/DllNotFoundException.cs
@@ -0,0 +1,40 @@
+// 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.
+**
+**
+=============================================================================*/
+
+namespace System {
+
+ using System;
+ using System.Runtime.Serialization;
+
+ [System.Runtime.InteropServices.ComVisible(true)]
+ [Serializable]
+ public class DllNotFoundException : TypeLoadException {
+ public DllNotFoundException()
+ : base(Environment.GetResourceString("Arg_DllNotFoundException")) {
+ SetErrorCode(__HResults.COR_E_DLLNOTFOUND);
+ }
+
+ public DllNotFoundException(String message)
+ : base(message) {
+ SetErrorCode(__HResults.COR_E_DLLNOTFOUND);
+ }
+
+ public DllNotFoundException(String message, Exception inner)
+ : base(message, inner) {
+ SetErrorCode(__HResults.COR_E_DLLNOTFOUND);
+ }
+
+ protected DllNotFoundException(SerializationInfo info, StreamingContext context) : base(info, context) {
+ }
+ }
+}