Catch NotYetImplemented in Repl

Reviewers: florijan, mislav.bradac

Reviewed By: florijan

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D297
This commit is contained in:
Teon Banek 2017-04-19 13:14:43 +02:00
parent b778c54d74
commit 14b6c739bb

View File

@ -13,6 +13,7 @@
#include "query/interpreter.hpp"
#include "query/typed_value.hpp"
#include "utils/algorithm.hpp"
#include "utils/exceptions/not_yet_implemented.hpp"
#ifdef HAS_READLINE
@ -152,6 +153,8 @@ void query::Repl(Dbms &dbms) {
std::cout << "RUNTIME EXCEPTION: " << e.what() << std::endl;
} catch (const query::TypedValueException &e) {
std::cout << "TYPED VALUE EXCEPTION: " << e.what() << std::endl;
} catch (const NotYetImplemented &e) {
std::cout << e.what() << std::endl;
}
}
}