Skip to content
Snippets Groups Projects
Commit 6160f20f authored by Jan Trávníček's avatar Jan Trávníček
Browse files

fix acat2

parent f044bf84
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,7 @@
#include <cstdlib>
#include <unistd.h>
#include <exception>
#include "AlibException.h"
#include "exception/AlibException.h"
#include "FromXMLParsers.h"
#include "sax/SaxParseInterface.h"
#include "sax/ParserException.h"
......@@ -66,6 +66,6 @@ int main(int argc, char** argv) {
} else if (alib::FromXMLParsers::stringParser.first(tokens)) {
getString(tokens);
} else {
throw alib::AlibException( "Expected root tag automaton, grammar, regexp or string. Read: " + tokens.front().getData());
throw exception::AlibException( "Expected root tag automaton, grammar, regexp or string. Read: " + tokens.front().getData());
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment