summaryrefslogtreecommitdiff
path: root/Examples
diff options
context:
space:
mode:
Diffstat (limited to 'Examples')
-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";