API16

JError/raise

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]

Create a new JException object given the passed arguments


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

Syntax[edit]

static raise($level, $code, $msg, $info=null, $backtrace=false)
Parameter Name Default Value Description
$level $level The error level - use any of PHP's own error levels for this: E_ERROR, E_WARNING, E_NOTICE, E_USER_ERROR, E_USER_WARNING, E_USER_NOTICE.
$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).
$backtrace false

Returns[edit]

mixed The object

Defined in[edit]

libraries/joomla/error/error.php

Importing[edit]

jimport( 'joomla.error.error' );

Source Body[edit]

public static function raise($level, $code, $msg, $info = null, $backtrace = false)
{
        jimport('joomla.error.exception');

        // build error object
        $exception = new JException($msg, $code, $level, $info, $backtrace);
        return JError::throwError($exception);
}


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

Examples[edit]

Code Examples[edit]