Skip to content
Snippets Groups Projects
Commit 6791f7b9 authored by Jan David Mol's avatar Jan David Mol
Browse files

Task #9337: Catch AipsError if augmenting MeasurementSet.

parent 01b5d02e
No related branches found
No related tags found
No related merge requests found
......@@ -197,6 +197,15 @@ namespace LOFAR
if (!itsParset.settings.realTime)
THROW(StorageException, ex);
#if defined HAVE_AIPSPP
}
catch (casa::AipsError &ex)
{
LOG_ERROR_STR(itsLogPrefix << "Could not add final meta data (AipsError): " << ex.what());
if (!itsParset.settings.realTime)
THROW(StorageException, ex.what());
#endif
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment