Skip to content

Instantly share code, notes, and snippets.

@mattiz
Created September 11, 2018 19:04
Show Gist options
  • Save mattiz/33292851858c1ef1be0961f40cca5050 to your computer and use it in GitHub Desktop.
Save mattiz/33292851858c1ef1be0961f40cca5050 to your computer and use it in GitHub Desktop.
<?php
namespace Foo;
try {
throw new \Exception();
} catch (Exception $e) {
echo 'Exception caught!';
} catch (\Exception $e) {
echo 'SlashException caught!';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment