summaryrefslogtreecommitdiff
path: root/Examples/Exceptions/exception.php
diff options
context:
space:
mode:
authorJasperVanEck <jaspergkurtz@gmail.com>2013-11-29 15:11:17 +0100
committerJasperVanEck <jaspergkurtz@gmail.com>2013-11-29 15:11:17 +0100
commit6e8778d6dd0f7295cecf047e57679cba595885d1 (patch)
tree5f6789f7736a846d072833550bd01e39ac4f90c3 /Examples/Exceptions/exception.php
parentc162135cb4c49e2724d5b8028f037c01808b6e84 (diff)
Changes in exceptions, to distinguish between catching and throwing exceptions. README.md of examples is doen for now
Diffstat (limited to 'Examples/Exceptions/exception.php')
-rw-r--r--Examples/Exceptions/exception.php25
1 files changed, 0 insertions, 25 deletions
diff --git a/Examples/Exceptions/exception.php b/Examples/Exceptions/exception.php
deleted file mode 100644
index 81bbd50..0000000
--- a/Examples/Exceptions/exception.php
+++ /dev/null
@@ -1,25 +0,0 @@
-<?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.
- *
- */
-
-// 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();
-}
-catch (Exception $exception)
-{
- // the exception object is thrown by C++ code, and caught by PHP
- // code
- echo $exception->getMessage(). "\n";
-
-}