Revision: 48
http://sourceforge.net/p/beeframework/code/48
Author: m_plomer
Date: 2013-07-30 15:33:04 +0000 (Tue, 30 Jul 2013)
Log Message:
-----------
- new exception subclass ProcExecException
Modified Paths:
--------------
trunk/framework/Bee/Exceptions/ProcExecException.php
Modified: trunk/framework/Bee/Exceptions/ProcExecException.php
===================================================================
--- trunk/framework/Bee/Exceptions/ProcExecException.php 2013-07-30 15:27:31 UTC (rev 47)
+++ trunk/framework/Bee/Exceptions/ProcExecException.php 2013-07-30 15:33:04 UTC (rev 48)
@@ -32,7 +32,7 @@
private $stdErr;
- function __construct($message, $returnValue, $stdOut, $stdErr) {
+ function __construct($message, $returnValue = false, $stdOut = false, $stdErr = false) {
parent::__construct($message);
$this->returnValue = $returnValue;
$this->stdOut = $stdOut;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|