From 140dc43836e000aca14a6f057332f41d0a258fc7 Mon Sep 17 00:00:00 2001 From: Fabian Laule Date: Thu, 3 Sep 2015 12:09:46 +0200 Subject: [PATCH] Fixed usage of the wrong exception class in the readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6672382..15f5598 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,7 @@ Hence, for instance, you can write the following: try { $manager->bind(); - } catch (BindingException $e) { + } catch (BindException $e) { // Do something about it }