ID:               24413
 Updated by:       [EMAIL PROTECTED]
 Reported By:      tleake at ebuyer dot com
-Status:           Open
+Status:           Closed
 Bug Type:         Zend Engine 2 problem
 Operating System: mandrake linux 9.0
 PHP Version:      5.0.0b1 (beta1)
 New Comment:

This bug has been fixed in CVS.

In case this was a PHP problem, snapshots of the sources are packaged
every three hours; this change will be in the next snapshot. You can
grab the snapshot at http://snaps.php.net/.
 
In case this was a documentation problem, the fix will show up soon at
http://www.php.net/manual/.

In case this was a PHP.net website problem, the change will show
up on the PHP.net site and on the mirror sites in short time.
 
Thank you for the report, and for helping us make PHP better.

Should work now (except for MyException should be MyExceptionFoo in the
catch). 


Previous Comments:
------------------------------------------------------------------------

[2003-07-03 05:15:06] tleake at ebuyer dot com

Sure its http://www.php.net/zend-engine-2.php in the section exceptions

------------------------------------------------------------------------

[2003-07-03 05:01:49] [EMAIL PROTECTED]

Could you please point out where is this code on the site?

------------------------------------------------------------------------

[2003-06-30 11:34:35] tleake at ebuyer dot com

Description:
------------
Trying the code below from the php site fails with the following error.
This is php-5.0.0 beta1 compiled with --disable-all under linux


Call to undefined method exception::__construct()

Reproduce code:
---------------
<?php
class MyExceptionFoo extends Exception {
    function __construct($exception) {
        parent::__construct($exception);
    }
}

try {
    throw new MyExceptionFoo("Hello");
} catch (MyException $exception) {
    print $exception->getMessage();
}
?> 

Expected result:
----------------
hello

Actual result:
--------------
<br />
<b>Fatal error</b>:  Call to undefined method exception::__construct()
in <b>/home/tony/software/web/php-5.0.0b1/sapi/cgi/test.php</b> on line
<b>4</b><br />


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=24413&edit=1

Reply via email to