Commit 57465c08 authored by atj's avatar atj
Browse files

Make builder provide better exception message

parent 5ff47bfc
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@ int main(int argc, char *argv[]) {
        client.run();
    }
    catch (std::exception &exception) {
        logger::write(exception.what(), logger::severity_level::fatal);
        logger::write(std::string() + "Client exception: " + exception.what(), logger::severity_level::fatal);
    }
    catch (...) {
        logger::write("Unknown ContainerBuilder exception: ", logger::severity_level::fatal);