Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Lost in an Install Loop
#26
Yes on a hosted server

Code:
<?php
try {
    $error = 'Throw this error';
    throw new Exception($error);
    echo 'Never get here';
}
catch (Exception $e)
{
    echo 'Exception caught: ',  $e->getMessage(), "\n";
}
?>
came back with ...

Exception caught: Throw this error

My oh my something worked <LOL>
Reply


Messages In This Thread
Lost in an Install Loop - by yerg - 03-18-2012, 11:18 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)