summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/EntryPointNotFoundException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/src/System/EntryPointNotFoundException.cs')
-rw-r--r--src/mscorlib/src/System/EntryPointNotFoundException.cs42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/mscorlib/src/System/EntryPointNotFoundException.cs b/src/mscorlib/src/System/EntryPointNotFoundException.cs
new file mode 100644
index 0000000000..a65d80058e
--- /dev/null
+++ b/src/mscorlib/src/System/EntryPointNotFoundException.cs
@@ -0,0 +1,42 @@
+// 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 EntryPointNotFoundException : TypeLoadException {
+ public EntryPointNotFoundException()
+ : base(Environment.GetResourceString("Arg_EntryPointNotFoundException")) {
+ SetErrorCode(__HResults.COR_E_ENTRYPOINTNOTFOUND);
+ }
+
+ public EntryPointNotFoundException(String message)
+ : base(message) {
+ SetErrorCode(__HResults.COR_E_ENTRYPOINTNOTFOUND);
+ }
+
+ public EntryPointNotFoundException(String message, Exception inner)
+ : base(message, inner) {
+ SetErrorCode(__HResults.COR_E_ENTRYPOINTNOTFOUND);
+ }
+
+ protected EntryPointNotFoundException(SerializationInfo info, StreamingContext context) : base(info, context) {
+ }
+
+
+ }
+
+}