! * class: CalledProcessError * Thrown when there was error executing the command. * Check Popen class API's to know when this exception * can be thrown. * */
| 258 | * |
| 259 | */ |
| 260 | class CalledProcessError: public std::runtime_error |
| 261 | { |
| 262 | public: |
| 263 | int retcode; |
| 264 | CalledProcessError(const std::string& error_msg, int retcode): |
| 265 | std::runtime_error(error_msg), retcode(retcode) |
| 266 | {} |
| 267 | }; |
| 268 | |
| 269 | |
| 270 | /*! |
no outgoing calls
no test coverage detected