Jump to content

Throw excpetion not being caught :(


eldan88

Recommended Posts

Hey guys. I am learning how to work with the try/throw exception. I wrote a small sample code, but for some reason its not being caught. Not sure what I am doing wrong. Can you guys please help? Below is a code. (Its a little bit of  a goof)

$age  = 20;


try {
if($age > 21) {
    echo "You are legal to drink"; 
} else {
    throw new Exception("You are not legal drink");
}
   }

 catch (Exception $e) {
     echo $e->getMessage();
 }

Link to comment
https://forums.phpfreaks.com/topic/282462-throw-excpetion-not-being-caught/
Share on other sites

 


 but for some reason its not being caught. 

 

Does that mean no exception is thrown, or do you get "uncaught exception"?

The latter is something you can get if your script is in a namespace, because you are catche "Exception $e" and not "\Exception $e"

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.