Made all error and warning messages lowercase consistently.

This commit is contained in:
2016-06-14 16:53:48 +02:00
parent 2984da773d
commit 6fec1cc409
20 changed files with 61 additions and 61 deletions

View File

@@ -19,7 +19,7 @@ class ConsistencyException: public std::exception
{
public:
explicit ConsistencyException()
: ConsistencyException("Unspecified consistency error")
: ConsistencyException("unspecified consistency error")
{
}
@@ -40,7 +40,7 @@ class ConsistencyException: public std::exception
const char *what() const throw()
{
if (m_message.empty())
return "Unspecified consistency error";
return "unspecified consistency error";
return m_message.c_str();
}

View File

@@ -21,7 +21,7 @@ class ParserException: public std::exception
{
public:
explicit ParserException(const utils::Parser &parser)
: ParserException(parser, "Unspecified parser error")
: ParserException(parser, "unspecified parser error")
{
}