Merge utils/exceptions into single file

Summary: Update documentation of `utils/exceptions.hpp`

Reviewers: mislav.bradac, florijan, buda

Reviewed By: buda

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D300
This commit is contained in:
Teon Banek
2017-04-19 15:52:20 +02:00
parent e5cc3f1561
commit 893df584f6
34 changed files with 302 additions and 225 deletions

View File

@@ -8,7 +8,7 @@ namespace fs = std::experimental::filesystem;
#include "logging/streams/stdout.hpp"
#include "query/preprocessor.hpp"
#include "utils/command_line/arguments.hpp"
#include "utils/exceptions/basic_exception.hpp"
#include "utils/exceptions.hpp"
#include "utils/file.hpp"
#include "utils/string.hpp"
@@ -43,7 +43,7 @@ std::string ExtractQuery(const fs::path &path) {
return query;
}
throw BasicException("Unable to find query!");
throw utils::BasicException("Unable to find query!");
}
int main(int argc, char **argv) {