在我的 x++ 代码中,我有以下内容
void run() {
try
{
startLengthyOperation();
this.readFile();
}
catch (Exception::Deadlock)
{
retry;
}
catch (Exception::Error)
{
error(strfmt("An error occured while trying to read the file %1", filename));
}
catch
{
error("An unkown error has occured");
}
endLengthyOperation();
}
我达到了最后的目标(之前,我没有收到有关异常的消息)。但我想知道真正发生了什么并导致异常。我怎样才能找出异常是什么?