Added missing ParserWarning file.
This commit is contained in:
parent
837612bb8d
commit
2797b58646
59
include/plasp/utils/ParserWarning.h
Normal file
59
include/plasp/utils/ParserWarning.h
Normal file
@ -0,0 +1,59 @@
|
||||
#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)
|
||||
: m_message{std::to_string(parser.row()) + ":" + std::to_string(parser.column()) + "\t" + 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
|
Reference in New Issue
Block a user