|
@ -14,6 +14,10 @@ namespace storm { |
|
|
stream << cstr; |
|
|
stream << cstr; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
BaseException::~BaseException() { |
|
|
|
|
|
// Intentionally left empty.
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
const char* BaseException::what() const throw() { |
|
|
const char* BaseException::what() const throw() { |
|
|
std::string errorString = this->stream.str(); |
|
|
std::string errorString = this->stream.str(); |
|
|
char* result = new char[errorString.size() + 1]; |
|
|
char* result = new char[errorString.size() + 1]; |
|
|