Skip to content
Snippets Groups Projects
Commit 0fa976cd authored by schoen's avatar schoen
Browse files

deleted new lines

parent 254cc261
No related branches found
No related tags found
1 merge request!51Open source
......@@ -217,10 +217,8 @@ int main(int argc, char *argv[])
} catch (const std::bad_alloc &e) {
*logging::out << logging::Logger::LOGGER_ERROR << "Bad Alloc:" << e.what() << "\n";
} catch (const std::exception &e) {
*logging::out << logging::Logger::LOGGER_ERROR << e.what() << "\n";
} catch (std::string &s) {
*logging::out << logging::Logger::LOGGER_ERROR << s << "\n";
} catch (...) {
*logging::out << logging::Logger::LOGGER_ERROR << "Unknown exception!\n";
......
......@@ -221,10 +221,8 @@ int main(int argc, char *argv[])
} catch (const std::bad_alloc &e) {
*logging::out << logging::Logger::LOGGER_ERROR << "Bad Alloc:" << e.what() << "\n";
} catch (const std::exception &e) {
*logging::out << logging::Logger::LOGGER_ERROR << e.what() << "\n";
} catch (std::string &s) {
*logging::out << logging::Logger::LOGGER_ERROR << s << "\n";
} catch (...) {
*logging::out << logging::Logger::LOGGER_ERROR << "Unknown exception!\n";
......
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