This commit is contained in:
2024-03-23 02:20:07 +05:00
parent 72352994f7
commit 58b62eb3a8
7 changed files with 72 additions and 10 deletions

View File

@@ -1,8 +1,6 @@
#include "UsefulException.hpp"
#include <sstream>
namespace GraphC {
UsefulException_::UsefulException_(std::string _message, std::string _file, std::string _func, int _line_n)
: message(_message), file(_file), function(_func), line_n(_line_n)
{
@@ -15,5 +13,3 @@ UsefulException_::UsefulException_(std::string _message, std::string _file, std:
char const* UsefulException_::what() const noexcept {
return complete_text.c_str();
}
}