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.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/Examples/Exceptions/ExceptionCatch/exception.php b/Examples/Exceptions/ExceptionCatch/exception.php
new file mode 100644
index 0000000..06bd534
--- /dev/null
+++ b/Examples/Exceptions/ExceptionCatch/exception.php
@@ -0,0 +1,17 @@
+<?php
+/**
+ * exception.cpp
+ *
+ * @author Jasper van Eck <jasper.vaneck@copernica.com>
+ *
+ * This example shows the working of a C++ function that throws an
+ * exception, and that exception is then caught by PHP code.
+ *
+ */
+
+// call the second C++ function that accepts a callback
+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");
+});}