Skip to content

Instantly share code, notes, and snippets.

@ilya-dev
Last active August 29, 2015 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ilya-dev/9600918 to your computer and use it in GitHub Desktop.
Save ilya-dev/9600918 to your computer and use it in GitHub Desktop.
<?php
class Bar extends \Exception {}
namespace Foo {
try
{
// do something
}
catch(Bar $e)
{
// will try to catch Foo\Bar,
// of course it will fail
}
try
{
// do something else
}
catch(\Bar $e)
{
// will try to catch Bar, that's what we need!
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment