Web浏览器导航错误

时间:2015-07-31 05:25:29

标签: c# wpf

我有一个WPF应用程序,我试图确保我的异常被正确捕获。我正在测试是否已移动文件路径并向用户显示MessageBox()。这是我目前得到的错误弹出窗口:

enter image description here

我该如何处理该异常?我希望弹出窗口显示以下消息:

MessageBox.Show("ERROR: Could not retrieve the Facility List. Please report this to the system administrator.", "ERROR 011", MessageBoxButton.OK, MessageBoxImage.Error);

我已经尝试过FileNotFoundException但无法捕获它。

1 个答案:

答案 0 :(得分:0)

如果您想知道抛出了哪种类型的异常,请为catch添加Exception,然后在catch中使用断点来查看异常类型。