------- error ------- Set the Python exception description.
| 56 | // Set the Python exception description. |
| 57 | // |
| 58 | void PyUtilApiFunction::error(std::string msg) |
| 59 | { |
| 60 | auto emsg = this->msgp + msg; |
| 61 | PyErr_SetString(this->pyError, emsg.c_str()); |
| 62 | } |
| 63 | |
| 64 | //----------- |
| 65 | // argsError |
no test coverage detected