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