$process Process that caused the exception */ public function __construct(Process $process) { parent::__construct( $process->getCommandLine() . ' failed with this error:' . PHP_EOL . trim($process->getErrorOutput()), intval($process->getExitCode()) ); } }