API16

API16:JError/raiseNotice

From Joomla! Documentation

Description

Wrapper method for the raise() method with predefined error level of E_NOTICE and backtrace set to false.


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

Syntax

static raiseNotice($code, $msg, $info=null)
Parameter Name Default Value Description
$code $code The application-internal error code for this error
$msg $msg The error message, which may also be shown the user if need be.
$info null $info Optional: Additional error information (usually only developer-relevant information that the user should never see, like a database DSN).

Returns

object $error The configured object

Defined in

libraries/joomla/error/error.php

Importing

jimport( 'joomla.error.error' );

Source Body

public static function raiseNotice($code, $msg, $info = null)
{
        return JError::raise(E_NOTICE, $code, $msg, $info);
}


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

Examples

Code Examples