tasmet/src/tasmet_exception.cpp

19 lines
479 B
C++
Raw Normal View History

// 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";
}
//////////////////////////////////////////////////////////////////////