03-27-2012, 12:23 AM
Yes on a hosted server
came back with ...
Exception caught: Throw this error
My oh my something worked <LOL>
Code:
<?php
try {
$error = 'Throw this error';
throw new Exception($error);
echo 'Never get here';
}
catch (Exception $e)
{
echo 'Exception caught: ', $e->getMessage(), "\n";
}
?>
Exception caught: Throw this error
My oh my something worked <LOL>