10 #ifndef PARENTNOTFOUND_H
11 #define PARENTNOTFOUND_H
41 element(_element), parent(_parent), id(_id) {}
51 const char*
what()
const throw() {
52 QString ret =
"Entity (" + parent +
") parent of "
53 + element +
"(" +
id +
") could not be found!";
54 return ret.toStdString().c_str();
58 #endif // PARENTNOTFOUND_H