tasmet/src/tasmet_exception.cpp
2016-11-11 23:22:44 +01:00

19 lines
479 B
C++

// tasmet_exception.cpp
//
// last-edit-by: J.A. de Jong
//
// Description:
// Implementation of exception TasMETBadAlloc
//////////////////////////////////////////////////////////////////////
#include "tasmet_exception.h"
const char* TasMETBadAlloc::what() const throw() {
return "Error: memory allocation failed. "
"Please make sure enough memory is available and restart the application";
}
//////////////////////////////////////////////////////////////////////