"removed not used query variable"

This commit is contained in:
Ralf Becker 2009-04-28 10:09:26 +00:00
parent 6f556a23df
commit e8577f10a7

View File

@ -147,12 +147,10 @@ class egw_exception_db extends egw_exception
* Constructor * Constructor
* *
* @param string $msg=null message, default "Database error!" * @param string $msg=null message, default "Database error!"
* @param unknown_type $code=100 * @param int $code=100
*/ */
function __construct($msg=null,$code=100) function __construct($msg=null,$code=100)
{ {
$this->query = $query;
if (is_null($msg)) $msg = lang('Database error!'); if (is_null($msg)) $msg = lang('Database error!');
parent::__construct($msg,$code); parent::__construct($msg,$code);