API16

JError/handleCallback: Difference between revisions

From Joomla! Documentation

Doxiki (talk | contribs)
New page: ===Description=== Callback error handler Send the error object to a callback method for error handling <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Descripti...
 
Doxiki (talk | contribs)
No edit summary
Line 19: Line 19:
!Description
!Description
|-
|-
|  
| &$error
|  
|  
|  $error  object to handle  
|  $error  object to handle  

Revision as of 10:08, 30 March 2010

Description

Callback error handler Send the error object to a callback method for error handling


[Edit Descripton]

Template:Description:JError/handleCallback

Syntax

static handleCallback(&$error, $options)
Parameter Name Default Value Description
&$error $error object to handle
$options $options Handler options

Returns

object The exception object

Defined in

libraries/joomla/error/error.php

Importing

jimport( 'joomla.error.error' );

Source Body

public static function handleCallback(&$error, $options)
{
        return call_user_func($options, $error);
}

[Edit See Also] Template:SeeAlso:JError/handleCallback

Examples

<CodeExamplesForm />