summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Reflection/TargetInvocationException.cs
blob: 7bbc93df2a1dc5ca264a8a981625b4897ae1f6ff (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
// 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.

////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
//
// TargetInvocationException is used to report an exception that was thrown
// 
//    by the target of an invocation.
//
// 
// 
//
namespace System.Reflection {
    
    
    using System;
    using System.Runtime.Serialization;
    [Serializable]
    public sealed class TargetInvocationException : ApplicationException {
        // This exception is not creatable without specifying the
        //    inner exception.
        private TargetInvocationException()
            : base(Environment.GetResourceString("Arg_TargetInvocationException")) {
            SetErrorCode(__HResults.COR_E_TARGETINVOCATION);
        }

        // This is called from within the runtime.
        private TargetInvocationException(String message) : base(message) {
            SetErrorCode(__HResults.COR_E_TARGETINVOCATION);
        }       
        
        public TargetInvocationException(System.Exception inner) 
            : base(Environment.GetResourceString("Arg_TargetInvocationException"), inner) {
            SetErrorCode(__HResults.COR_E_TARGETINVOCATION);
        }
    
        public TargetInvocationException(String message, Exception inner) : base(message, inner) {
            SetErrorCode(__HResults.COR_E_TARGETINVOCATION);
        }

        internal TargetInvocationException(SerializationInfo info, StreamingContext context) : base (info, context) {
        }
    }
}