Skip to content
Snippets Groups Projects
Commit 04f4ddee authored by Aurélien Bricier's avatar Aurélien Bricier
Browse files

WRG: fixed DEMConvert.cxx warning

parent 230d3032
No related branches found
No related tags found
No related merge requests found
......@@ -213,10 +213,10 @@ int DEMConvert::Execute(otb::ApplicationOptionsResult* parseResult)
{
writer->execute();
}
catch(std::exception& e)
catch(std::exception& err)
{
itkExceptionMacro("Error occurs writing the ouput image...");
return EXIT_FAILURE;
itkExceptionMacro("Error occurs writing the ouput image: " << err);
return EXIT_FAILURE;
}
}
......
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