summaryrefslogtreecommitdiff
path: root/Examples/Exceptions/ExceptionThrow/exception.php
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/Exceptions/ExceptionThrow/exception.php')
-rw-r--r--Examples/Exceptions/ExceptionThrow/exception.php24
1 files changed, 12 insertions, 12 deletions
diff --git a/Examples/Exceptions/ExceptionThrow/exception.php b/Examples/Exceptions/ExceptionThrow/exception.php
index 81bbd50..3afe86f 100644
--- a/Examples/Exceptions/ExceptionThrow/exception.php
+++ b/Examples/Exceptions/ExceptionThrow/exception.php
@@ -1,25 +1,25 @@
<?php
/**
- * exception.cpp
+ * exception.cpp
*
- * @author Jasper van Eck <jasper.vaneck@copernica.com>
+ * @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.
- *
+ * This example shows the working of a C++ function that throws an
+ * exception, and that exception is then caught by PHP code.
+ *
*/
// try-catch block to be able to handle the exception
try
{
- // the my_throw_exception function is implemented in C++. and
- // it is going to throw an exception
- my_throw_exception_function();
+ // the my_throw_exception function is implemented in C++. and
+ // it is going to throw an exception
+ my_throw_exception_function();
}
catch (Exception $exception)
{
- // the exception object is thrown by C++ code, and caught by PHP
- // code
- echo $exception->getMessage(). "\n";
-
+ // the exception object is thrown by C++ code, and caught by PHP
+ // code
+ echo $exception->getMessage(). "\n";
+
}