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.cs40
1 files changed, 40 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..609538b076
--- /dev/null
+++ b/src/mscorlib/src/System/EntryPointNotFoundException.cs
@@ -0,0 +1,40 @@
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license 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) {
+ }
+
+
+ }
+
+}