Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added error-output as message for seperate-process exception #45

Merged
merged 2 commits into from
Feb 6, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
added error-output as message for seperate-process exception
  • Loading branch information
wachterjohannes committed Jan 12, 2018
commit dbd31e7e5ce48e3942b18680bbdf070217259cbe
2 changes: 2 additions & 0 deletions src/Executor/SeparateProcessException.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ class SeparateProcessException extends \Exception
*/
public function __construct($errorOutput)
{
parent::__construct($errorOutput);

$this->errorOutput = $errorOutput;
}

Expand Down