(PHP 5 >= 5.1.0)
Exception::__construct — Erstellt die Exception
Erstellt die Exception.
Die auszugebende Beschreibung der Exception.
Die Fehlernummer der Exception.
Die vorangegangene Exception, die für Exception-Verkettung verwendet werden soll.
Version | Beschreibung |
---|---|
5.3.0 | Der Parameter previous wurde hinzugefügt. |
This would be nice for handling ZendFramework Exceptions to your own framwork or CMS Exceptions:
<?php
try
{
$oZFResponse = $oZFHttpClient->request();
}
catch(Zend_Http_Exception $exZFHttpEx)
{
throw new Runtime_{$oZFHttpEx->getCode()}_Exception('some ErrorMailing Message', 500, $oZFHttpEx);
}
?>
Regards,
Mario