API16:JError/handleIgnore
From Joomla! Documentation
Description
Ignore error handler Ignores the error
Template:Description:JError/handleIgnore
Syntax
static handleIgnore(&$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 handleIgnore(&$error, $options)
{
return $error;
}
[Edit See Also] Template:SeeAlso:JError/handleIgnore
Examples
<CodeExamplesForm />