Removed ParserWarning class.
This commit is contained in:
parent
777c9839a1
commit
9679706a08
@ -135,12 +135,6 @@ int main(int argc, char **argv)
|
|||||||
logger.logError(e.coordinate(), e.message());
|
logger.logError(e.coordinate(), e.message());
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
catch (const plasp::utils::ParserWarning &e)
|
|
||||||
{
|
|
||||||
plasp::utils::Logger logger;
|
|
||||||
logger.logError(e.coordinate(), e.message());
|
|
||||||
return EXIT_FAILURE;
|
|
||||||
}
|
|
||||||
catch (const plasp::utils::TranslatorException &e)
|
catch (const plasp::utils::TranslatorException &e)
|
||||||
{
|
{
|
||||||
plasp::utils::Logger logger;
|
plasp::utils::Logger logger;
|
||||||
|
@ -1,71 +0,0 @@
|
|||||||
#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_coordinate{parser.coordinate()},
|
|
||||||
m_message{message},
|
|
||||||
m_plainMessage{m_coordinate.sectionName + ":" + std::to_string(m_coordinate.row)
|
|
||||||
+ ":" + std::to_string(m_coordinate.column) + " " + m_message}
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
~ParserWarning() throw()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
const char *what() const throw()
|
|
||||||
{
|
|
||||||
return m_plainMessage.c_str();
|
|
||||||
}
|
|
||||||
|
|
||||||
const Parser::Coordinate &coordinate() const
|
|
||||||
{
|
|
||||||
return m_coordinate;
|
|
||||||
}
|
|
||||||
|
|
||||||
const std::string &message() const
|
|
||||||
{
|
|
||||||
return m_message;
|
|
||||||
}
|
|
||||||
|
|
||||||
private:
|
|
||||||
Parser::Coordinate m_coordinate;
|
|
||||||
std::string m_message;
|
|
||||||
std::string m_plainMessage;
|
|
||||||
};
|
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif
|
|
@ -11,7 +11,6 @@
|
|||||||
#include <plasp/pddl/expressions/Variable.h>
|
#include <plasp/pddl/expressions/Variable.h>
|
||||||
#include <plasp/utils/IO.h>
|
#include <plasp/utils/IO.h>
|
||||||
#include <plasp/utils/ParserException.h>
|
#include <plasp/utils/ParserException.h>
|
||||||
#include <plasp/utils/ParserWarning.h>
|
|
||||||
|
|
||||||
namespace plasp
|
namespace plasp
|
||||||
{
|
{
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
#include <plasp/utils/Logger.h>
|
#include <plasp/utils/Logger.h>
|
||||||
|
|
||||||
#include <plasp/utils/Formatting.h>
|
#include <plasp/utils/Formatting.h>
|
||||||
#include <plasp/utils/ParserWarning.h>
|
|
||||||
|
|
||||||
namespace plasp
|
namespace plasp
|
||||||
{
|
{
|
||||||
@ -118,7 +117,7 @@ void Logger::parserWarning(const Parser &parser, const std::string &message)
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
if (m_warningLevel == WarningLevel::Error)
|
if (m_warningLevel == WarningLevel::Error)
|
||||||
throw ParserWarning(parser, message);
|
throw ParserException(parser, message);
|
||||||
|
|
||||||
const auto coordinate = parser.coordinate();
|
const auto coordinate = parser.coordinate();
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user