API16:JError/getError
From Joomla! Documentation
Description
Method for retrieving the last exception object in the error stack
<! removed transcluded page call, red link never existed >
Syntax
static getError($unset=false)
| Parameter Name | Default Value | Description |
|---|---|---|
| $unset | false |
Returns
mixed Last exception object in the error stack or boolean false if none exist
Defined in
libraries/joomla/error/error.php
Importing
jimport( 'joomla.error.error' );
Source Body
public static function getError($unset = false)
{
if (!isset(JError::$stack[0])) {
return false;
}
if ($unset) {
$error = array_shift(JError::$stack[0]);
}
else {
$error = &JError::$stack[0];
}
return $error;
}
<! removed transcluded page call, red link never existed >
Examples
Code Examples