summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/DuplicateWaitObjectException.cs
blob: da29e2ad76a519b04a6a9cf759f55875701e5cf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// 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: Exception class for duplicate objects in WaitAll/WaitAny.
**
**
=============================================================================*/

using System.Runtime.Serialization;

namespace System
{
    // The DuplicateWaitObjectException is thrown when an object 
    // appears more than once in the list of objects to WaitAll or WaitAny.
    // 
    [Serializable]
    public class DuplicateWaitObjectException : ArgumentException
    {
        private static volatile String s_duplicateWaitObjectMessage = null;

        private static String DuplicateWaitObjectMessage
        {
            get
            {
                if (s_duplicateWaitObjectMessage == null)
                    s_duplicateWaitObjectMessage = SR.Arg_DuplicateWaitObjectException;
                return s_duplicateWaitObjectMessage;
            }
        }

        // Creates a new DuplicateWaitObjectException with its message 
        // string set to a default message.
        public DuplicateWaitObjectException()
            : base(DuplicateWaitObjectMessage)
        {
            HResult = __HResults.COR_E_DUPLICATEWAITOBJECT;
        }

        public DuplicateWaitObjectException(String parameterName)
            : base(DuplicateWaitObjectMessage, parameterName)
        {
            HResult = __HResults.COR_E_DUPLICATEWAITOBJECT;
        }

        public DuplicateWaitObjectException(String parameterName, String message)
            : base(message, parameterName)
        {
            HResult = __HResults.COR_E_DUPLICATEWAITOBJECT;
        }

        public DuplicateWaitObjectException(String message, Exception innerException)
            : base(message, innerException)
        {
            HResult = __HResults.COR_E_DUPLICATEWAITOBJECT;
        }

        // This constructor is required for serialization
        protected DuplicateWaitObjectException(SerializationInfo info, StreamingContext context) : base(info, context) { }
    }
}