1 2 3 4 5 6 7
#include "LuaParser/exception/LuaParseException.h" #include <string> LuaParseException::LuaParseException(std::string_view message) : runtime_error(std::string(message)) { }