// // Created by kyle on 2023-10-10. // #include "Exceptions.h" namespace klib { AssertionFailed::AssertionFailed(std::string message) : msg(message) { } const char * AssertionFailed::what() const throw() { return const_cast(this->msg.c_str()); } }