MinitScript  0.9.31 PRE-BETA
ExceptionBase.cpp
Go to the documentation of this file.
2 
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 }