Jump to content

Zend Framework - Cannot override final method Exception


ilnli

Recommended Posts

I'm running a script which uses zend frameword, but it show me a blank page and I keep on getting this error:

 

[Thu Jul 21 00:28:45 2011] [error] [client 86.8.113.177] PHP Fatal error:  Cannot override final method Exception::__clone() in /var/www/vhosts/mailmegafiles.com/httpdocs/lib/Zend/Translate/Exception.php on line 35

 

 

 

Link to comment
Share on other sites

Zend_Exception extends SPL Exception, where cloning is finalized, if your application is trying to override it you'll get such an error.

 

class My_Exception extends Zend_Translate_Exception {

private function __clone()
{
	// will not work
}

}

 

The PHP error is just pointing out this fact, you're going to have to hunt down the real problem where someone is doing something wrong.  Nothing is wrong with Zend its just being misused.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.