gui error handler

This commit is contained in:
2024-05-06 17:02:50 +05:00
parent da1dfd4c13
commit 461b92ccc3
4 changed files with 90 additions and 15 deletions

View File

@@ -6,7 +6,7 @@ UsefulException_::UsefulException_(const std::string& _message, const std::strin
{
std::stringstream ss;
ss<<message<<'\n';
ss<<file<<':'<<_line_n<<" in "<<function;
ss<<" at "<<file<<':'<<_line_n<<" in "<<function;
complete_text = ss.str();
}