From 7e969a5d342f14ab35b85a663e2b3d440944d2ab Mon Sep 17 00:00:00 2001 From: xieguigang Date: Tue, 23 Jul 2019 18:34:09 +0800 Subject: [PATCH] test success, but not sure how to add stack trace info into the generated exception data --- ComputingServices/Taskhost.d/test/Module1.vb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ComputingServices/Taskhost.d/test/Module1.vb b/ComputingServices/Taskhost.d/test/Module1.vb index 67db831..0905419 100644 --- a/ComputingServices/Taskhost.d/test/Module1.vb +++ b/ComputingServices/Taskhost.d/test/Module1.vb @@ -13,6 +13,9 @@ Module Module1 Dim exceptionInvoke = InvokeInfo.CreateObject(exceptionTask, {"Here is the exception message..."}) Dim exceptionResult As Rtvl = RemoteCall.Invoke(exceptionInvoke) + ' throw exception at here + exceptionResult.GetValue() + Pause() End Sub