summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Reflection/TargetInvocationException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/src/System/Reflection/TargetInvocationException.cs')
-rw-r--r--src/mscorlib/src/System/Reflection/TargetInvocationException.cs51
1 files changed, 51 insertions, 0 deletions
diff --git a/src/mscorlib/src/System/Reflection/TargetInvocationException.cs b/src/mscorlib/src/System/Reflection/TargetInvocationException.cs
new file mode 100644
index 0000000000..70de4227dd
--- /dev/null
+++ b/src/mscorlib/src/System/Reflection/TargetInvocationException.cs
@@ -0,0 +1,51 @@
+// 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]
+ [System.Runtime.InteropServices.ComVisible(true)]
+#if FEATURE_CORECLR
+ public sealed class TargetInvocationException : Exception {
+#else
+ public sealed class TargetInvocationException : ApplicationException {
+#endif //FEATURE_CORECLR
+ // 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) {
+ }
+ }
+}