|
Posted by McKirahan on 02/16/07 01:48
"shimmyshack" <matt.farey@gmail.com> wrote in message
news:1171577754.774839.155030@a34g2000cwb.googlegroups.com...
On Feb 15, 6:05 pm, Kimmo Laine <s...@outolempi.net> wrote:
[snip]
> "En ole paha ihminen, mutta omenat ovat elinkeinoni." -Perttu Sirviφ
> s...@outolempi.net | Gedoon-S @ IRCnet | rot13(x...@bhgbyrzcv.arg)
oh and of course, dont forget the other typo ,->. further on the same
line!!
Please notify the PHP Documentation Group; here's their example:
Chapter 20. Exceptions
Example 20-1. Throwing an Exception
<?php
try {
$error = 'Always throw this error';
throw new Exception($error);
// Code following an exception is not executed.
echo 'Never executed';
} catch (Exception $e) {
echo 'Caught exception: ', $e->getMessage(), "\n";
}
// Continue execution
echo 'Hello World';
?>
Navigation:
[Reply to this message]
|