MCPcopy Create free account
hub / github.com/arun11299/cpp-subprocess / CalledProcessError

Class CalledProcessError

cpp-subprocess/subprocess.hpp:260–267  ·  view source on GitHub ↗

! * class: CalledProcessError * Thrown when there was error executing the command. * Check Popen class API's to know when this exception * can be thrown. * */

Source from the content-addressed store, hash-verified

258 *
259 */
260class CalledProcessError: public std::runtime_error
261{
262public:
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/*!

Callers 2

execute_processMethod · 0.85
check_output_implFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected