Salome HOME
Fix for bug PAL13701(EDF 319 SMESH: Export UNV failed with not enough space disk...
authormzn <mzn@opencascade.com>
Tue, 31 Oct 2006 13:23:07 +0000 (13:23 +0000)
committermzn <mzn@opencascade.com>
Tue, 31 Oct 2006 13:23:07 +0000 (13:23 +0000)
src/DriverUNV/DriverUNV_W_SMDS_Mesh.cxx

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