mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
functionObjectList: Print the messages from errors caught during functionObject construction
Exit on FatalIOError
This commit is contained in:
@ -355,15 +355,26 @@ bool Foam::functionObjectList::read()
|
|||||||
{
|
{
|
||||||
foPtr = functionObject::New(key, time_, dict);
|
foPtr = functionObject::New(key, time_, dict);
|
||||||
}
|
}
|
||||||
catch (...)
|
catch (Foam::IOerror& ioErr)
|
||||||
{}
|
{
|
||||||
|
Info<< ioErr << nl << endl;
|
||||||
|
::exit(1);
|
||||||
|
}
|
||||||
|
catch (Foam::error& err)
|
||||||
|
{
|
||||||
|
WarningInFunction
|
||||||
|
<< "Caught FatalError " << err << nl << endl;
|
||||||
|
}
|
||||||
FatalError.dontThrowExceptions();
|
FatalError.dontThrowExceptions();
|
||||||
FatalIOError.dontThrowExceptions();
|
FatalIOError.dontThrowExceptions();
|
||||||
|
|
||||||
if (foPtr.valid())
|
if (foPtr.valid())
|
||||||
{
|
{
|
||||||
objPtr = foPtr.ptr();
|
objPtr = foPtr.ptr();
|
||||||
ok = objPtr->start() && ok;
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
ok = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user