From: Ralf Hartmann Date: Fri, 30 Sep 2005 16:22:01 +0000 (+0000) Subject: Make an error message more informative by giving a hint what the reason for a error... X-Git-Tag: v8.0.0~13043 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=692c0446a7f0e5069512d6a68f29567f4f4a6174;p=dealii.git Make an error message more informative by giving a hint what the reason for a error might be. git-svn-id: https://svn.dealii.org/trunk@11560 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/base/source/parameter_handler.cc b/deal.II/base/source/parameter_handler.cc index 96659114db..d6732bfe1d 100644 --- a/deal.II/base/source/parameter_handler.cc +++ b/deal.II/base/source/parameter_handler.cc @@ -1252,7 +1252,7 @@ ParameterHandler::scan_line (std::string line, // this line matched nothing known std::cerr << "Line " << lineno - << ": This line matched nothing known:" << std::endl + << ": This line matched nothing known ('set' or 'subsection' missing!?):" << std::endl << " " << line << std::endl; return false; }