API16

API16:JError/getError

From Joomla! Documentation

Revision as of 05:04, 13 May 2013 by JoomlaWikiBot (talk | contribs) (removing red link to edit, no existant pages)

Description

Method for retrieving the last exception object in the error stack

[<! removed edit link to red link >]

<! 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 edit link to red link >] <! removed transcluded page call, red link never existed >

Examples

<CodeExamplesForm />