|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2008-02-18 22:06 UTC] johannes@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Dec 02 11:00:01 2025 UTC |
Description: ------------ i don't know whether it is a bug or not. Look at the sample code given. Reproduce code: --------------- try { throw new Exception('test'); } catch (NonExistent $e) { // the above class is non-existent but PHP doesn't give a warning or error } catch (Exception $e) { // exception caught here }