patrick
/
plasp
Archived
1
0
Fork 0
This repository has been archived on 2023-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
plasp/include/plasp/utils/ParserWarning.h

62 lines
1.3 KiB
C++

#ifndef __PLASP__UTILS__PARSER_WARNING_H
#define __PLASP__UTILS__PARSER_WARNING_H
#include <exception>
#include <string>
#include <plasp/utils/Parser.h>
namespace plasp
{
namespace utils
{
////////////////////////////////////////////////////////////////////////////////////////////////////
//
// ParserWarning
//
////////////////////////////////////////////////////////////////////////////////////////////////////
class ParserWarning: public std::exception
{
public:
explicit ParserWarning(const utils::Parser &parser)
: ParserWarning(parser, "Unspecified parser warning")
{
}
explicit ParserWarning(const utils::Parser &parser, const char *message)
: ParserWarning(parser, static_cast<std::string>(message))
{
}
explicit ParserWarning(const utils::Parser &parser, const std::string &message)
{
const auto coordinate = parser.coordinate();
m_message = coordinate.sectionName + ":" + std::to_string(coordinate.row) + ":" + std::to_string(coordinate.column) + " " + message;
}
~ParserWarning() throw()
{
}
const char *what() const throw()
{
if (m_message.empty())
return "Unspecified parser warning";
return m_message.c_str();
}
private:
std::string m_message;
};
////////////////////////////////////////////////////////////////////////////////////////////////////
}
}
#endif