|
Posted by R on 01/20/65 11:46
Hi All,
I'm using PHP 5, my code fully separates code from content, my code
throws exceptions (LIZException) when error occurs.
but every time I throw exception I get this fatal error:
Fatal error: Exception thrown without a stack frame in Unknown on line
0
It must be my fault by the message isn't helping me - any idea what to
do?
My code looks like this:
<?
try {
// code goes here
}
catch (LIZException $e) {
$e->printDebug();
echo '@@';
} catch (Exception $e) {
LIZException::printException($e);
}
echo '!!!';
?> // end of file!
If exception thrown:
$e->printDebug() will execute, then echo '@@', then echo '!!!'
and finally fatal error message
any hints most welcome
best regards
R
Navigation:
[Reply to this message]
|