API16:JError/raise
From Joomla! Documentation
Description
Create a new JException object given the passed arguments
<! removed transcluded page call, red link never existed >
Syntax
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
mixed The object
Defined in
libraries/joomla/error/error.php
Importing
jimport( 'joomla.error.error' );
Source Body
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
Code Examples