我有一个WPF应用程序,我试图确保我的异常被正确捕获。我正在测试是否已移动文件路径并向用户显示MessageBox()。这是我目前得到的错误弹出窗口:
我该如何处理该异常?我希望弹出窗口显示以下消息:
MessageBox.Show("ERROR: Could not retrieve the Facility List. Please report this to the system administrator.", "ERROR 011", MessageBoxButton.OK, MessageBoxImage.Error);
我已经尝试过FileNotFoundException但无法捕获它。
答案 0 :(得分:0)
如果您想知道抛出了哪种类型的异常,请为catch
添加Exception
,然后在catch
中使用断点来查看异常类型。