From: david at grudl dot com Operating system: - PHP version: 5.3.0alpha1 PHP Bug Type: Scripting Engine problem Bug description: Uncommon order and chained exceptions
Description: ------------ Chained exceptions are printed in uncommon order (from inner to outer exception). This makes me confused :-( Reference: http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Throwable.html#printStackTrace() Reproduce code: --------------- try { throw new FileNotFoundException("File not found."); } catch (FileNotFoundException $e) { throw new ConfigException("Missing configuration.", 0, $e); } echo $e; // note $e is ConfigException! Expected result: ---------------- exception 'FileNotFoundException' with message 'File not found.' in demo.php:8 Stack trace: #0 demo.php(17): ... #1 {main} Next exception 'ConfigException' with message 'Missing configuration.' in demo.php:21 Stack trace: #0 demo.php(28): .... #1 {main} Actual result: -------------- exception 'ConfigException' with message 'Missing configuration.' in demo.php:21 Stack trace: #0 demo.php(28): .... #1 {main} previous exception 'FileNotFoundException' with message 'File not found.' in demo.php:8 Stack trace: #0 demo.php(17): ... #1 {main} -- Edit bug report at http://bugs.php.net/?id=45767&edit=1 -- Try a CVS snapshot (PHP 5.2): http://bugs.php.net/fix.php?id=45767&r=trysnapshot52 Try a CVS snapshot (PHP 5.3): http://bugs.php.net/fix.php?id=45767&r=trysnapshot53 Try a CVS snapshot (PHP 6.0): http://bugs.php.net/fix.php?id=45767&r=trysnapshot60 Fixed in CVS: http://bugs.php.net/fix.php?id=45767&r=fixedcvs Fixed in release: http://bugs.php.net/fix.php?id=45767&r=alreadyfixed Need backtrace: http://bugs.php.net/fix.php?id=45767&r=needtrace Need Reproduce Script: http://bugs.php.net/fix.php?id=45767&r=needscript Try newer version: http://bugs.php.net/fix.php?id=45767&r=oldversion Not developer issue: http://bugs.php.net/fix.php?id=45767&r=support Expected behavior: http://bugs.php.net/fix.php?id=45767&r=notwrong Not enough info: http://bugs.php.net/fix.php?id=45767&r=notenoughinfo Submitted twice: http://bugs.php.net/fix.php?id=45767&r=submittedtwice register_globals: http://bugs.php.net/fix.php?id=45767&r=globals PHP 4 support discontinued: http://bugs.php.net/fix.php?id=45767&r=php4 Daylight Savings: http://bugs.php.net/fix.php?id=45767&r=dst IIS Stability: http://bugs.php.net/fix.php?id=45767&r=isapi Install GNU Sed: http://bugs.php.net/fix.php?id=45767&r=gnused Floating point limitations: http://bugs.php.net/fix.php?id=45767&r=float No Zend Extensions: http://bugs.php.net/fix.php?id=45767&r=nozend MySQL Configuration Error: http://bugs.php.net/fix.php?id=45767&r=mysqlcfg