API16

JError/getError

From Joomla! Documentation

< API16:JError

The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Method for retrieving the last exception object in the error stack


<! removed transcluded page call, red link never existed >

Syntax[edit]

static getError($unset=false)
Parameter Name Default Value Description
$unset false

Returns[edit]

mixed Last exception object in the error stack or boolean false if none exist

Defined in[edit]

libraries/joomla/error/error.php

Importing[edit]

jimport( 'joomla.error.error' );

Source Body[edit]

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[edit]

Code Examples[edit]