Im Joomla Core finde ich noch viele Aufrufe wie diesen: // Check for errors. if (count($errors = $this->get('Errors'))) { JError::raiseError(500, implode("\n", $errors)); return false; } JError ist jedoch seit Platform Release 12.1 veraltet. Also, wie soll ich Standard-PHP-Ausnahmen...
20
Was ist der richtige Weg für die Ausnahmebehandlung?