summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Runtime/InteropServices/SafeArrayTypeMismatchException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/src/System/Runtime/InteropServices/SafeArrayTypeMismatchException.cs')
-rw-r--r--src/mscorlib/src/System/Runtime/InteropServices/SafeArrayTypeMismatchException.cs40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/mscorlib/src/System/Runtime/InteropServices/SafeArrayTypeMismatchException.cs b/src/mscorlib/src/System/Runtime/InteropServices/SafeArrayTypeMismatchException.cs
new file mode 100644
index 0000000000..3c6bffb06a
--- /dev/null
+++ b/src/mscorlib/src/System/Runtime/InteropServices/SafeArrayTypeMismatchException.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: This exception is thrown when the runtime type of an array
+** is different than the safe array sub type specified in the
+** metadata.
+**
+=============================================================================*/
+
+namespace System.Runtime.InteropServices {
+
+ using System;
+ using System.Runtime.Serialization;
+
+[System.Runtime.InteropServices.ComVisible(true)]
+ [Serializable] public class SafeArrayTypeMismatchException : SystemException {
+ public SafeArrayTypeMismatchException()
+ : base(Environment.GetResourceString("Arg_SafeArrayTypeMismatchException")) {
+ SetErrorCode(__HResults.COR_E_SAFEARRAYTYPEMISMATCH);
+ }
+
+ public SafeArrayTypeMismatchException(String message)
+ : base(message) {
+ SetErrorCode(__HResults.COR_E_SAFEARRAYTYPEMISMATCH);
+ }
+
+ public SafeArrayTypeMismatchException(String message, Exception inner)
+ : base(message, inner) {
+ SetErrorCode(__HResults.COR_E_SAFEARRAYTYPEMISMATCH);
+ }
+
+ protected SafeArrayTypeMismatchException(SerializationInfo info, StreamingContext context) : base(info, context) {
+ }
+
+ }
+
+}