summaryrefslogtreecommitdiffstats
path: root/system/core/Exceptions.php
diff options
context:
space:
mode:
authorDavid Behler <mail@davidbehler.de>2011-08-14 23:00:43 +0200
committerDavid Behler <mail@davidbehler.de>2011-08-14 23:00:43 +0200
commit209b2cf0feac54b4e4fd4c3896524cfc65bf8a46 (patch)
treecd4fdd2039f616ea595d7acfe54a5ba9837c8564 /system/core/Exceptions.php
parent9b5df59a6be4da0016b738de8c4fcd3a14d43867 (diff)
Added some docs to CI core files
Diffstat (limited to 'system/core/Exceptions.php')
-rwxr-xr-x[-rw-r--r--]system/core/Exceptions.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/system/core/Exceptions.php b/system/core/Exceptions.php
index bff86a92f..6a63ca733 100644..100755
--- a/system/core/Exceptions.php
+++ b/system/core/Exceptions.php
@@ -30,8 +30,22 @@ class CI_Exceptions {
var $message;
var $filename;
var $line;
+
+ /**
+ * Nesting level of the output buffering mechanism
+ * Used to
+ *
+ * @var int
+ * @access public
+ */
var $ob_level;
+ /**
+ * List if available error levels
+ *
+ * @var array
+ * @access public
+ */
var $levels = array(
E_ERROR => 'Error',
E_WARNING => 'Warning',