summaryrefslogtreecommitdiff
path: root/Examples/Exceptions
diff options
context:
space:
mode:
authorJasperVanEck <jaspergkurtz@gmail.com>2013-11-28 16:53:20 +0100
committerJasperVanEck <jaspergkurtz@gmail.com>2013-11-28 16:53:20 +0100
commitf22a2c5f26eba8f4e907e8919c56b67038c95354 (patch)
tree411f6d45a1f6309a9e6c25893d250df970e1b648 /Examples/Exceptions
parentb6665b72996d23522d8a277cf4acc3d46e5e11fa (diff)
removed a debugging cout
Diffstat (limited to 'Examples/Exceptions')
-rw-r--r--Examples/Exceptions/exception.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/Examples/Exceptions/exception.php b/Examples/Exceptions/exception.php
index b288e23..9c02286 100644
--- a/Examples/Exceptions/exception.php
+++ b/Examples/Exceptions/exception.php
@@ -20,7 +20,6 @@ try
}
catch (Exception $exception)
{
- echo $exception->getMessage();
+ echo $exception->getMessage(). "\n";
}
- echo my_throw_exception_function() . "\n";