summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/DuplicateWaitObjectException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/src/System/DuplicateWaitObjectException.cs')
-rw-r--r--src/mscorlib/src/System/DuplicateWaitObjectException.cs62
1 files changed, 62 insertions, 0 deletions
diff --git a/src/mscorlib/src/System/DuplicateWaitObjectException.cs b/src/mscorlib/src/System/DuplicateWaitObjectException.cs
new file mode 100644
index 0000000000..44dc9c262a
--- /dev/null
+++ b/src/mscorlib/src/System/DuplicateWaitObjectException.cs
@@ -0,0 +1,62 @@
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+
+/*=============================================================================
+**
+**
+**
+** Purpose: Exception class for duplicate objects in WaitAll/WaitAny.
+**
+**
+=============================================================================*/
+
+namespace System {
+
+ using System;
+ using System.Runtime.Remoting;
+ using System.Runtime.Serialization;
+
+ // The DuplicateWaitObjectException is thrown when an object
+ // appears more than once in the list of objects to WaitAll or WaitAny.
+ //
+[System.Runtime.InteropServices.ComVisible(true)]
+ [Serializable]
+ public class DuplicateWaitObjectException : ArgumentException {
+
+ private static volatile String _duplicateWaitObjectMessage = null;
+
+ private static String DuplicateWaitObjectMessage {
+ get {
+ if (_duplicateWaitObjectMessage == null)
+ _duplicateWaitObjectMessage = Environment.GetResourceString("Arg_DuplicateWaitObjectException");
+ return _duplicateWaitObjectMessage;
+ }
+ }
+
+ // Creates a new DuplicateWaitObjectException with its message
+ // string set to a default message.
+ public DuplicateWaitObjectException()
+ : base(DuplicateWaitObjectMessage) {
+ SetErrorCode(__HResults.COR_E_DUPLICATEWAITOBJECT);
+ }
+
+ public DuplicateWaitObjectException(String parameterName)
+ : base(DuplicateWaitObjectMessage, parameterName) {
+ SetErrorCode(__HResults.COR_E_DUPLICATEWAITOBJECT);
+ }
+
+ public DuplicateWaitObjectException(String parameterName, String message)
+ : base(message, parameterName) {
+ SetErrorCode(__HResults.COR_E_DUPLICATEWAITOBJECT);
+ }
+
+ public DuplicateWaitObjectException(String message, Exception innerException)
+ : base(message, innerException) {
+ SetErrorCode(__HResults.COR_E_DUPLICATEWAITOBJECT);
+ }
+
+ // This constructor is required for serialization
+ protected DuplicateWaitObjectException(SerializationInfo info, StreamingContext context) : base (info, context) {
+ }
+ }
+}