You've already forked linux-packaging-mono
Imported Upstream version 4.0.0~alpha1
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
This commit is contained in:
53
external/referencesource/mscorlib/system/reflection/targetinvocationexception.cs
vendored
Normal file
53
external/referencesource/mscorlib/system/reflection/targetinvocationexception.cs
vendored
Normal file
@ -0,0 +1,53 @@
|
||||
// ==++==
|
||||
//
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
//
|
||||
// ==--==
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// TargetInvocationException is used to report an exception that was thrown
|
||||
//
|
||||
// <OWNER>[....]</OWNER>
|
||||
// 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) {
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user