Skip to content
Snippets Groups Projects
Commit 4bcbd069 authored by sebastien's avatar sebastien
Browse files

k_order_perturbation: cosmetic change

git-svn-id: https://www.dynare.org/svn/dynare/trunk@3207 ac1d8469-bf42-47a9-8791-bf33cf982152
parent 20d41074
No related branches found
No related tags found
No related merge requests found
......@@ -64,7 +64,12 @@ DynamicModelDLL::DynamicModelDLL(const string &modName, const int y_length, cons
catch (int i)
{
ostringstream msg;
msg << "Can't load " << fName << " (error code: " << i;
msg << "Error when loading " << fName << " (";
if (i == 1)
msg << "can't dynamically load the file";
if (i == 2)
msg << "can't locate the 'Dynamic' symbol";
msg << ")";
throw DynareException(__FILE__, __LINE__, msg.str());
}
catch (...)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment