From 6160f20f1857c6b729fbd991d400453023d80607 Mon Sep 17 00:00:00 2001 From: Jan Travnicek <Jan.Travnicek@fit.cvut.cz> Date: Wed, 2 Jul 2014 12:26:09 +0200 Subject: [PATCH] fix acat2 --- acat2/src/acat.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/acat2/src/acat.cpp b/acat2/src/acat.cpp index 3e6917527d..2715e50459 100644 --- a/acat2/src/acat.cpp +++ b/acat2/src/acat.cpp @@ -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()); } } -- GitLab