| 31 | namespace LightGBM { |
| 32 | |
| 33 | inline int LGBM_APIHandleException(const std::exception& ex) { |
| 34 | LGBM_SetLastError(ex.what()); |
| 35 | return -1; |
| 36 | } |
| 37 | inline int LGBM_APIHandleException(const std::string& ex) { |
| 38 | LGBM_SetLastError(ex.c_str()); |
| 39 | return -1; |
nothing calls this directly
no test coverage detected