initial commit

This commit is contained in:
2021-06-29 19:28:14 +02:00
commit 5c7908ac4b
20 changed files with 913 additions and 0 deletions

9
exception.cpp Normal file
View File

@@ -0,0 +1,9 @@
#include "exception.h"
Exception::Exception(const std::string &msg) {
cause = msg;
}
const char* Exception::what() const noexcept { return cause.c_str(); }