Hallo !
Ich probiere gerade ein bisschen mit Exceptions herum und habe ein Problem damit, bitte schauts euch mal das an.
Ich probiere gerade ein bisschen mit Exceptions herum und habe ein Problem damit, bitte schauts euch mal das an.
PHP-Code:
<?php
function showError($exception) {
if(!is_object($exception)) {
throw new BgException(
'<i>'.__FUNCTION__.'()</i> in '.__FILE__.' hat einen falschen Datentyp bekommen.');
}
try {
$errorMsg = 'Testnachricht';
?>
<table>
<tr>
<td>Fehler vom Typ
<i><?php echo $exception->getTyp(); ?></i></td>
</tr>
<tr>
<td><?php echo $errorMsg; ?></td>
</tr>
</table>
<?php
}
catch (BgException $BgException) {
trigger_error($BgException->getMessage(), E_ERROR);
}
}
Kommentar