#include <stdafx.h>
TRY
{
// some AFX relate class use here
// ...
}
CATCH_ALL(e)
{
// some exception handling
// delete exception
AfxMessageBox("예외");
DELETE_EXCEPTION(e);
}
END_CATCH_ALL
끝~
반응형
#include <stdafx.h>
TRY
{
// some AFX relate class use here
// ...
}
CATCH_ALL(e)
{
// some exception handling
// delete exception
AfxMessageBox("예외");
DELETE_EXCEPTION(e);
}
END_CATCH_ALL
끝~