Fix for bug PAL13701(EDF 319 SMESH: Export UNV failed with not enough space disk --> No user information).

This commit is contained in:
mzn 2006-10-31 13:23:07 +00:00
parent b39db60480
commit c73213143d

View File

@ -295,9 +295,11 @@ Driver_Mesh::Status DriverUNV_W_SMDS_Mesh::Perform()
} }
catch(const std::exception& exc){ catch(const std::exception& exc){
INFOS("Follow exception was cought:\n\t"<<exc.what()); INFOS("Follow exception was cought:\n\t"<<exc.what());
throw;
} }
catch(...){ catch(...){
INFOS("Unknown exception was cought !!!"); INFOS("Unknown exception was cought !!!");
throw;
} }
return aResult; return aResult;
} }