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

 

 

 

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.

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.