为什么 Dynamics AX 中没有报告 CLR 异常?

发布于 2024-11-01 02:31:59 字数 85 浏览 0 评论 0原文

当我的 .NET 代码中发生异常时,X++ 代码就会停止执行并退出。它根本不显示任何错误消息,它只是停止工作。

这是为什么呢?有办法改变吗?

When an exception ocurrs in my .NET code, the X++ code just stops executing and drops out. It doesn't display any error message at all, it simply stops working.

Why is this? Is there a way to change it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

青衫负雪 2024-11-08 02:31:59

这是解决这个问题的一种方法

System.Exception                        e; // declare

try
{
       ... code that can throw clr error
}
catch (Exception::CLRError)
{
       e = CLRInterop::getLastException();

       while( e )
       {
           info( e.get_Message() );
           e = e.get_InnerException();
       }
}

还可以在这里阅读更多内容:
http://blogs.msdn.com/b/emeadaxsupport/archive/2010/07/22/working-with-clr-exceptions-in-dynamics-ax-x-code.aspx

Here's one way to solve that:

System.Exception                        e; // declare

;

try
{
       ... code that can throw clr error
}
catch (Exception::CLRError)
{
       e = CLRInterop::getLastException();

       while( e )
       {
           info( e.get_Message() );
           e = e.get_InnerException();
       }
}

Also read more here:
http://blogs.msdn.com/b/emeadaxsupport/archive/2010/07/22/working-with-clr-exceptions-in-dynamics-ax-x-code.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文