CStdioFile Inifile;
BOOL bExist;
CFileException ex;
/*在这里为什么不能捕捉到异常
try
{
bExist=IniFile.Open("profile.ini",CFile::modeRead,&ex); 
}
catch(CFileException *e)
{
::AfxMessageBox("file err");
throw CFileException::fileNotFound;
}
我故意把profile.ini文件名写错了,为什么会捕捉不到异常?