summaryrefslogtreecommitdiff
path: root/documentation/calling-functions-and-methods.html
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-08 14:18:40 +0100
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-08 14:18:40 +0100
commit8b64e27a4ac8000c08d154b6343cf6bcd537a014 (patch)
treec1dc3d1449b2e1bbdf0f3fbb8013225c4489a6b0 /documentation/calling-functions-and-methods.html
parent78e7865b8dac7229bdc128af870a4cad11cf1cd2 (diff)
added parapgraph about exceptions that are thrown when a function does not exist
Diffstat (limited to 'documentation/calling-functions-and-methods.html')
-rw-r--r--documentation/calling-functions-and-methods.html7
1 files changed, 6 insertions, 1 deletions
diff --git a/documentation/calling-functions-and-methods.html b/documentation/calling-functions-and-methods.html
index 47a3bf9..5a0da07 100644
--- a/documentation/calling-functions-and-methods.html
+++ b/documentation/calling-functions-and-methods.html
@@ -155,4 +155,9 @@ userspace function called with some_parameter
lambda function called with param some parameter
2014-03-08 13:55:54
</pre>
-</p> \ No newline at end of file
+</p>
+<p>
+ If you call a function or a method that does not exist, a Php::Exception
+ will be thrown. If you do not catch this exception in your C++ code, it
+ will bubble up and also appear in PHP user space as an exception.
+</p>