aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-10-30 18:28:55 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-10-30 18:28:55 +0000
commit4cd58adb00b6382e1e552c500a01449283b3c398 (patch)
tree933bb28113547994b737370805efbd4ff298e0db
parentd6bb8d4d0b473ceeef23b948fcfb773a8423a8b6 (diff)
Update documentation to give an example of how to use the return status of RaiseException
Closes issue #11117, patch by blitzrage (yay blitzrage) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@87626 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--main/pbx.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/main/pbx.c b/main/pbx.c
index 24d56207e..aecaa13eb 100644
--- a/main/pbx.c
+++ b/main/pbx.c
@@ -448,7 +448,8 @@ static struct pbx_builtin {
{ "RaiseException", pbx_builtin_raise_exception,
"Handle an exceptional condition",
" RaiseException(<reason>): This application will jump to the \"e\" extension\n"
- "in the current context, setting the dialplan function EXCEPTION(). If the \"e\"\n"
+ "in the current context, setting the dialplan function EXCEPTION().\n"
+ "You can access the value of <reason> with ${EXCEPTION(type)}. If the \"e\"\n"
"extension does not exist, the call will hangup.\n"
},