summaryrefslogtreecommitdiffstats
path: root/system/core/Exceptions.php
diff options
context:
space:
mode:
authorDavid Behler <mail@davidbehler.de>2011-08-14 23:52:48 +0200
committerDavid Behler <mail@davidbehler.de>2011-08-14 23:52:48 +0200
commitcda768a957172d5da7aa7637337405c39e0f774d (patch)
tree02f91db0adda925741180c81637a94ca50e03617 /system/core/Exceptions.php
parent209b2cf0feac54b4e4fd4c3896524cfc65bf8a46 (diff)
Added some docs to CI core files
Diffstat (limited to 'system/core/Exceptions.php')
-rwxr-xr-xsystem/core/Exceptions.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/system/core/Exceptions.php b/system/core/Exceptions.php
index 6a63ca733..869739a5a 100755
--- a/system/core/Exceptions.php
+++ b/system/core/Exceptions.php
@@ -33,7 +33,6 @@ class CI_Exceptions {
/**
* Nesting level of the output buffering mechanism
- * Used to
*
* @var int
* @access public
@@ -98,7 +97,8 @@ class CI_Exceptions {
* 404 Page Not Found Handler
*
* @access private
- * @param string
+ * @param string the page
+ * @param bool log error yes/no
* @return string
*/
function show_404($page = '', $log_error = TRUE)
@@ -129,6 +129,7 @@ class CI_Exceptions {
* @param string the heading
* @param string the message
* @param string the template name
+ * @param int the status code
* @return string
*/
function show_error($heading, $message, $template = 'error_general', $status_code = 500)