TDME2  1.9.200
ExceptionBase.cpp
Go to the documentation of this file.
2 
3 #include <tdme/tdme.h>
4 
5 #include <string>
6 
7 using std::string;
8 
10 
11 ExceptionBase::ExceptionBase(const string& message) throw(): runtime_error(message) {
12 }
13 
14 ExceptionBase::~ExceptionBase() throw() {
15 }
Exception base class.
Definition: ExceptionBase.h:19