summaryrefslogtreecommitdiff
path: root/Examples/Exceptions/ExceptionCatch/exception.php
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/Exceptions/ExceptionCatch/exception.php')
-rw-r--r--Examples/Exceptions/ExceptionCatch/exception.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Examples/Exceptions/ExceptionCatch/exception.php b/Examples/Exceptions/ExceptionCatch/exception.php
index 0fec704..f0bfe90 100644
--- a/Examples/Exceptions/ExceptionCatch/exception.php
+++ b/Examples/Exceptions/ExceptionCatch/exception.php
@@ -14,4 +14,4 @@ my_catch_exception_function(function($a, $b, $c) {
// throw an exception from PHP - the C++ code will catch this exception
throw new Exception("Example exception");
-});}
+});