blob: 5a24e7eced89e09c9785801d050b81b1587b25e1 (
plain)
1
2
3
4
5
6
7
8
|
#include "Exception.h"
using namespace crepe;
using namespace std;
const char * Exception::what() const noexcept { return error.c_str(); }
Exception::Exception(const string & msg) { this->error = msg; }
|