do not netgen::multithread.task to error description if it is empty
This commit is contained in:
parent
47fa9dbaa1
commit
644445c7bc
@ -403,10 +403,19 @@ bool NETGENPlugin_NETGEN_3D::compute(SMESH_Mesh& aMesh,
|
|||||||
str << ": " << ex.GetMessageString();
|
str << ": " << ex.GetMessageString();
|
||||||
error(str);
|
error(str);
|
||||||
}
|
}
|
||||||
|
catch (netgen::NgException exc)
|
||||||
|
{
|
||||||
|
SMESH_Comment str("NgException");
|
||||||
|
if ( strlen( netgen::multithread.task ) > 0 )
|
||||||
|
str << " at " << netgen::multithread.task;
|
||||||
|
str << ": " << exc.What();
|
||||||
|
error(str);
|
||||||
|
}
|
||||||
catch (...)
|
catch (...)
|
||||||
{
|
{
|
||||||
SMESH_Comment str("Exception in netgen::OCCGenerateMesh()");
|
SMESH_Comment str("Exception in netgen::OCCGenerateMesh()");
|
||||||
str << " at " << netgen::multithread.task;
|
if ( strlen( netgen::multithread.task ) > 0 )
|
||||||
|
str << " at " << netgen::multithread.task;
|
||||||
error(str);
|
error(str);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user