|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-12-20 17:51 UTC] val@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 03:00:02 2025 UTC |
Description: ------------ When I try to compile and load file defining class which inherits from class inheriting from builtin Exception class, PHP throws a fatal error. Reproduce code: --------------- <?php class RuntimeException extends Exception { } class InvalidParamException extends RuntimeException { } ?> Expected result: ---------------- No error. Actual result: -------------- "Fatal error: Cannot override final method Exception::__clone()"