From 4e03ae2fef20449de094baf52c5a8acf27a77adb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Ankarstr=C3=B6m?= Date: Wed, 20 Jul 2022 21:31:25 +0200 Subject: Improve fatal error messages. As the message box has no owner (because the main window may not be initialized yet), it may be unclear which application is being terminated. --- c/main.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'c/main.cpp') diff --git a/c/main.cpp b/c/main.cpp index 3746bb6..c426c65 100644 --- a/c/main.cpp +++ b/c/main.cpp @@ -51,24 +51,24 @@ void OnTerminate() noexcept try { std::rethrow_exception(std::current_exception()); } catch (const term_t& t) { - std::basic_string tstr = TEXT("The program was terminated due to a Prolog exception: "); + std::basic_string tstr = TEXT("Episode Browser was terminated due to a Prolog exception: "); TCHAR* tsz; if (PL_get_tchars(t, &tsz, CVT_WRITE)) { tstr += tsz; MessageBox(NULL, tstr.c_str(), TEXT("Fatal Error"), MB_ICONERROR); } else - MessageBoxA(NULL, "The program was terminated due to a Prolog exception.", + MessageBoxA(NULL, "Episode Browser was terminated due to a Prolog exception.", "Fatal Error", MB_ICONERROR); } catch (Win32Error& e) { - std::basic_string tstr = TEXT("The program was terminated due to a Windows error: "); + std::basic_string tstr = TEXT("Episode Browser was terminated due to a Windows error: "); tstr += e.what(); MessageBox(NULL, tstr.c_str(), TEXT("Fatal Error"), MB_ICONERROR); } catch (std::exception& e) { - std::string str = "The program was terminated due to an exception: "; + std::string str = "Episode Browser was terminated due to an exception: "; str += e.what(); MessageBoxA(NULL, str.c_str(), "Fatal Error", MB_ICONERROR); } catch (...) { - MessageBoxA(NULL, "The program was terminated due to an exception.", + MessageBoxA(NULL, "Episode Browser was terminated due to an exception.", "Fatal Error", MB_ICONERROR); } _Exit(1); -- cgit v1.2.3