Nel mio codice x ++ Ho il seguenteDynamics AX 2009, Gestione delle eccezioni
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();
}
sto colpendo il fermo finale (prima, mi stavo alcun messaggio sulle eccezioni). Ma voglio sapere cosa sta davvero succedendo e causando l'eccezione. Come posso scoprire cos'è l'eccezione?