summaryrefslogtreecommitdiff
path: root/src/mscorlib/shared/System/MissingMethodException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/shared/System/MissingMethodException.cs')
-rw-r--r--src/mscorlib/shared/System/MissingMethodException.cs60
1 files changed, 60 insertions, 0 deletions
diff --git a/src/mscorlib/shared/System/MissingMethodException.cs b/src/mscorlib/shared/System/MissingMethodException.cs
new file mode 100644
index 0000000000..07d428967b
--- /dev/null
+++ b/src/mscorlib/shared/System/MissingMethodException.cs
@@ -0,0 +1,60 @@
+// 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 class loading failures.
+**
+**
+=============================================================================*/
+
+using System.Runtime.Serialization;
+
+namespace System
+{
+ [Serializable]
+ public class MissingMethodException : MissingMemberException
+ {
+ public MissingMethodException()
+ : base(SR.Arg_MissingMethodException)
+ {
+ HResult = __HResults.COR_E_MISSINGMETHOD;
+ }
+
+ public MissingMethodException(string message)
+ : base(message)
+ {
+ HResult = __HResults.COR_E_MISSINGMETHOD;
+ }
+
+ public MissingMethodException(string message, Exception inner)
+ : base(message, inner)
+ {
+ HResult = __HResults.COR_E_MISSINGMETHOD;
+ }
+
+ public MissingMethodException(string className, string methodName)
+ {
+ ClassName = className;
+ MemberName = methodName;
+ }
+
+ protected MissingMethodException(SerializationInfo info, StreamingContext context)
+ : base(info, context)
+ {
+ }
+
+ public override string Message
+ {
+ get
+ {
+ return ClassName == null ? base.Message :
+ SR.Format(SR.MissingMethod_Name, ClassName + "." + MemberName +
+ (Signature != null ? " " + FormatSignature(Signature) : string.Empty));
+ }
+ }
+ }
+}