Class JException
Joomla! Exception object.
Deprecated: 1.7
Copyright: Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved.
License: General Public License version 2 or later; see LICENSE.txt
Since: 1.5
Located at legacy/exception/exception.php
Methods summary
public
|
#
__construct( string $msg, integer $code = 0, integer $level = null, string $info = null, boolean $backtrace = false )
Constructor
|
public
string
|
|
public
string
|
|
public
mixed
|
|
public
array
|
|
public
string
|
|
public
array
|
|
public
mixed
|
|
public
boolean
|
|
public
|
Methods inherited from Exception
__wakeup()
,
getCode()
,
getFile()
,
getLine()
,
getMessage()
,
getPrevious()
,
getTrace()
,
getTraceAsString()
Magic methods summary
Properties summary
protected
string
|
$level |
#
Error level. |
protected
string
|
$code |
#
Error code. |
protected
string
|
$message |
#
Error message. |
protected
string
|
$info |
#
Additional info about the error relevant to the developer, for example, if a database connect fails, the dsn used |
protected
string
|
$file |
#
Name of the file the error occurred in [Available if backtrace is enabled] |
protected
integer
|
$line |
#
Line number the error occurred in [Available if backtrace is enabled] |
protected
string
|
$function |
#
Name of the method the error occurred in [Available if backtrace is enabled] |
protected
string
|
$class |
#
Name of the class the error occurred in [Available if backtrace is enabled] |
protected
string
|
$type |
#
Error type. |
protected
array
|
$args |
#
Arguments received by the method the error occurred in [Available if backtrace is enabled] |
protected
mixed
|
$backtrace |
#
Backtrace information. |
protected
string[]
|
$_errors |
#
Container holding the error messages |